summaryrefslogtreecommitdiff
path: root/test/SemaCXX/dependent-auto.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2011-02-23 00:37:57 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2011-02-23 00:37:57 +0000
commit406c38e8c1f105acfd438f94dfbc17af817aa4a5 (patch)
tree96200e12239f22e4b50aaa772ce4df333c6dbb2d /test/SemaCXX/dependent-auto.cpp
parent74eed0ea03598cc5ef58b72fd5ed929631a11631 (diff)
downloadclang-406c38e8c1f105acfd438f94dfbc17af817aa4a5.tar.gz
Fix PR9276: We were missing the checks for auto deducing to different types in the same declaration group in the template instantiation case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126279 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/dependent-auto.cpp')
-rw-r--r--test/SemaCXX/dependent-auto.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/SemaCXX/dependent-auto.cpp b/test/SemaCXX/dependent-auto.cpp
index 0ea59481d5..52b15eda73 100644
--- a/test/SemaCXX/dependent-auto.cpp
+++ b/test/SemaCXX/dependent-auto.cpp
@@ -32,3 +32,28 @@ bool h(T t) {
}
bool b = h('x'); // expected-note {{here}}
+
+// PR 9276 - Make sure we check auto types deduce the same
+// in the case of a dependent initializer
+namespace PR9276 {
+ template<typename T>
+ void f() {
+ auto i = T(), j = 0; // expected-error {{deduced as 'long' in declaration of 'i' and deduced as 'int' in declaration of 'j'}}
+ }
+
+ void g() {
+ f<long>(); // expected-note {{here}}
+ f<int>();
+ }
+}
+
+namespace NoRepeatedDiagnostic {
+ template<typename T>
+ void f() {
+ auto a = 0, b = 0.0, c = T(); // expected-error {{deduced as 'int' in declaration of 'a' and deduced as 'double' in declaration of 'b'}}
+ }
+ // We've already diagnosed an issue. No extra diagnostics is needed for these.
+ template void f<int>();
+ template void f<double>();
+ template void f<char>();
+}