aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/modules/tpl-friend-13_b.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/modules/tpl-friend-13_b.C')
-rw-r--r--gcc/testsuite/g++.dg/modules/tpl-friend-13_b.C11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/modules/tpl-friend-13_b.C b/gcc/testsuite/g++.dg/modules/tpl-friend-13_b.C
new file mode 100644
index 00000000000..0e27e97b113
--- /dev/null
+++ b/gcc/testsuite/g++.dg/modules/tpl-friend-13_b.C
@@ -0,0 +1,11 @@
+// { dg-additional-options "-fmodules-ts" }
+
+import M;
+
+A<int> a;
+struct S {}; // { dg-error "conflicts with import" }
+template <typename> struct T {}; // { dg-error "conflicts with import" }
+
+B<int> c;
+void f() {} // { dg-error "conflicts with import" }
+template <typename> void g() {} // { dg-error "conflicts with import" }