blob: 05f8e19ee1bc4780ba4f835b8c25eb56e5481a22 [file] [log] [blame]
Richard Smithd28ac5b2014-03-22 23:33:22 +00001template<typename T> struct S {
2 __attribute__((always_inline)) static int f() { return 0; }
3 __attribute__((always_inline, visibility("hidden"))) static int g() { return 0; }
4};
5
6extern template struct S<int>;