blob: cf6139d0cec7c7f8b440dcb62bfea6517d0eaa26 [file] [log] [blame]
Douglas Gregord8ac4362009-05-18 22:38:38 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3template<typename T>
4struct ImaginaryLiteral0 {
5 void f(T &x) {
6 x = 3.0I; // expected-error{{incompatible type}}
7 }
8};
9
10template struct ImaginaryLiteral0<_Complex float>;
11template struct ImaginaryLiteral0<int*>; // expected-note{{instantiation}}