http://llvm.org/bugs/show_bug.cgi?id=8368
Richard Smith <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | --- Comment #3 from Richard Smith <[email protected]> 2012-02-20 20:45:09 CST --- The example in comment#0 is still incorrectly rejected in my testing at r151017. The example in bug#10741 is still not rejected. Another testcase... we should not reject this: struct A { typedef int T; }; template<int> struct U { typedef int T; }; template<typename> struct S { A a; int n = decltype(a)::T(); int m = U<sizeof(a)>::T(); }; S<char> s; -- 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
