http://llvm.org/bugs/show_bug.cgi?id=16947
Bug ID: 16947
Summary: Diagnose local class with template member
Product: clang
Version: unspecified
Hardware: PC
OS: Windows NT
Status: NEW
Severity: normal
Priority: P
Component: Frontend
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Classification: Unclassified
Clang does not diagnose a local class with a template member.
gcc does.
$ cat test.cpp
int test() {
class A {
template<typename T> class B {
T t;
};
};
return 0;
}
$ clang -c test.cpp
$ gcc -c test.cpp
test.cpp: In function 'int test()':
test.cpp:3:5: error: invalid declaration of member template in local class
$
[temp.mem]p2 seems clear: "A local class shall not have member templates."
--
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