aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp')
-rw-r--r--test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp b/test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp
deleted file mode 100644
index 8f571e0..0000000
--- a/test/FrontendC++/2005-02-19-BitfieldStructCrash.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %llvmgxx -S %s -o -
-
-struct QChar {unsigned short X; QChar(unsigned short); } ;
-
-struct Command {
- Command(QChar c) : c(c) {}
- unsigned int type : 4;
- QChar c;
- };
-
-Command X(QChar('c'));
-
-void Foo(QChar );
-void bar() { Foo(X.c); }