Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / tmplattr7.C
blob545e089f1bbbcbae0bcfd9627a4fe8e5b6c5499b
1 // PR c++/33620
3 template <typename T>
4 struct __attribute__((visibility("default"))) List {};
6 int bar(List<int> args);
7 bool test(const List<int> &);
9 int i = bar(List<int>());
11 bool test(const List<int> &) { return true; }