зеркало из https://github.com/microsoft/clang-1.git
Migrate 2009-04-23-bool2.cpp from llvm/test/FrontendC++.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138110 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
e90e9c3856
Коммит
f54a225e28
|
@ -0,0 +1,15 @@
|
|||
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
||||
// g++.old-deja/g++.jason/bool2.C from gcc testsuite.
|
||||
// Crashed before 67975 went in.
|
||||
struct F {
|
||||
bool b1 : 1;
|
||||
bool b2 : 7;
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
F f = { true, true };
|
||||
|
||||
if (int (f.b1) != 1)
|
||||
return 1;
|
||||
}
|
Загрузка…
Ссылка в новой задаче