aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge/class-template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/ASTMerge/class-template.cpp')
-rw-r--r--test/ASTMerge/class-template.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ASTMerge/class-template.cpp b/test/ASTMerge/class-template.cpp
index 847c9569e5..eea31b1c2f 100644
--- a/test/ASTMerge/class-template.cpp
+++ b/test/ASTMerge/class-template.cpp
@@ -13,3 +13,12 @@
// CHECK: class-template1.cpp:19:10: error: template parameter has different kinds in different translation units
// CHECK: class-template2.cpp:19:10: note: template parameter declared here
+
+// CHECK: class-template2.cpp:25:20: error: external variable 'x0r' declared with incompatible types in different translation units ('X0<double> *' vs. 'X0<float> *')
+// CHECK: class-template1.cpp:24:19: note: declared here with type 'X0<float> *'
+
+// CHECK: class-template1.cpp:32:8: warning: type 'X0<wchar_t>' has incompatible definitions in different translation units
+// CHECK: class-template1.cpp:33:7: note: field 'member' has type 'int' here
+// CHECK: class-template2.cpp:34:9: note: field 'member' has type 'float' here
+
+// CHECK: 1 warning and 5 errors generated.