From-SVN: r23763
This commit is contained in:
Jason Merrill 1998-11-22 21:42:28 -05:00
parent 72a9314325
commit 693331300b
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Build don't link:
template<typename T> T baz() { return 0; }
struct foo {
template<typename T> static T staticbar() { return 0; }
template<typename T> T bar() { return 0; }
};
void f()
{
foo t;
int i = baz<int>();
int j = foo::staticbar<int>();
int k = t.bar<int>();
}