aboutsummaryrefslogtreecommitdiff
path: root/test/FixIt/fixit.cpp
diff options
context:
space:
mode:
authorKaelyn Uhrain <rikka@google.com>2012-04-19 23:26:12 +0000
committerKaelyn Uhrain <rikka@google.com>2012-04-19 23:26:12 +0000
commit1e77b65b4819bc7a809245b12bd00450b4924025 (patch)
treec0b82bc2ac0f9eeca80c785e974d5640d09276ab /test/FixIt/fixit.cpp
parent434ed260eb28cacd1b87fc2429dfee66d61dfcf0 (diff)
Re-add the closing '}' for the namespace I accidentally deleted when
removing a (new) duplicate test whose only difference was the tag type being an enum instead of a struct. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FixIt/fixit.cpp')
-rw-r--r--test/FixIt/fixit.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/FixIt/fixit.cpp b/test/FixIt/fixit.cpp
index afa71c6f3d..ac1fb6397f 100644
--- a/test/FixIt/fixit.cpp
+++ b/test/FixIt/fixit.cpp
@@ -216,3 +216,4 @@ class Foo {
Bar bar_; // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}}
};
void Foo::SetBar(Bar bar) { bar_ = bar; } // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}}
+}