http://llvm.org/bugs/show_bug.cgi?id=8292
Richard Smith <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #4 from Richard Smith <[email protected]> 2012-03-22 17:36:43 CDT --- This was fixed way back in r130298. <stdin>:1:81: error: implicit instantiation of template 'A<int>' within its own definition template<typename T> struct A { struct B{}; void f() {} struct C { int c[sizeof(A<int>::B)]; }; void g() {} }; int main() { A<int> b; b.f(); b.g(); } ^ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
