reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / template17.C
blob7d557eb152a565becb43e5a40addc748f6709d48
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 struct Regex { int i; Regex(char *, int); };
4 template<class KEY>
5 class NDAMName {
6 public:
7     static const Regex pattern;
8     static unsigned sequence_number;
9 };
11 const Regex NDAMName<'L'>::pattern("^[Ll](.*)$",   1);// { dg-error "type/value mismatch" "mismatch" }
12 // { dg-message "expected a type" "expected" { target *-*-* } .-1 }
13 // { dg-warning "deprecated|forbids converting a string constant" "depr" { target *-*-* } .-2 }
14 unsigned NDAMName<'L'>::sequence_number = 0;// { dg-error "type/value mismatch" "mismatch" }
15 // { dg-message "expected a type" "exp" { target *-*-* } .-1 }