language: C++ 4.7.2 (gcc-4.7.2)
date: 715 days 5 hours ago
link:
visibility: private
1
2
3
4
5
6
7
template< typename > class t {};
 
template<> struct t< int > { int a; } r;
 
int main() {
        r;
}
prog.cpp:3: warning: unused variable ‘r’
prog.cpp: In function ‘int main()’:
prog.cpp:6: error: ‘r’ was not declared in this scope