aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2005-02-11-AnonymousUnion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC++/2005-02-11-AnonymousUnion.cpp')
-rw-r--r--test/FrontendC++/2005-02-11-AnonymousUnion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC++/2005-02-11-AnonymousUnion.cpp b/test/FrontendC++/2005-02-11-AnonymousUnion.cpp
index b0ff7e7507..87ababc5f1 100644
--- a/test/FrontendC++/2005-02-11-AnonymousUnion.cpp
+++ b/test/FrontendC++/2005-02-11-AnonymousUnion.cpp
@@ -21,7 +21,7 @@ int test2(short F) {
}
// Make sure that normal unions work. duh :)
-volatile union {
+volatile union U_t {
short S;
int i;
} U;