diff options
author | John McCall <rjmccall@apple.com> | 2010-04-09 19:03:51 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-04-09 19:03:51 +0000 |
commit | 7002f4c03c2d0544f4e8bea8d3a5636519081e35 (patch) | |
tree | a6acb1bd60450f617e378f663e829273e0b1aef3 /test/SemaTemplate/instantiate-local-class.cpp | |
parent | fd2254405de977dcc706a4dc7775c44a4218a27b (diff) |
Turn access control on by default in -cc1.
Remove -faccess-control from -cc1; add -fno-access-control.
Make the driver pass -fno-access-control by default.
Update a bunch of tests to be correct under access control.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/instantiate-local-class.cpp')
-rw-r--r-- | test/SemaTemplate/instantiate-local-class.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaTemplate/instantiate-local-class.cpp b/test/SemaTemplate/instantiate-local-class.cpp index 72ad90a04f..d57ba8a682 100644 --- a/test/SemaTemplate/instantiate-local-class.cpp +++ b/test/SemaTemplate/instantiate-local-class.cpp @@ -13,11 +13,11 @@ template void f0<int>(); // PR5764 namespace PR5764 { - class X { + struct X { template <typename T> void Bar() { typedef T ValueType; - class Y { + struct Y { Y() { V = ValueType(); } ValueType V; |