Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / g++.dg / template / addr1.C
blobdd5e3870fc53e238de9f62d855e5fa02df4965bc
1 // PR c++/15542
3 template <typename> struct S_T { 
4   const char** operator & (); 
5 }; 
6  
7 template <class T> void foo(T **) {} 
8  
9 template <typename> void templateTest() { 
10   S_T<const char> s_t; 
11   foo(&s_t); 
12