Ticket #3645: minimal_no_boost.cc

File minimal_no_boost.cc, 168 bytes (added by romanp@…, 13 years ago)

Minimal test case without boost demonstrating compilation errors

Line 
1struct s {};
2
3template <class T, class U>
4void foo(U) {}
5
6namespace n {
7 template <class T, class U>
8 void foo(U) {}
9
10 void bar() {
11 s a;
12 foo<void>(a);
13 }
14}