Add another testcase

llvm-svn: 38870
This commit is contained in:
Chris Lattner 2006-08-11 02:12:35 +00:00
parent eaf06598ea
commit 3401781548
1 changed files with 4 additions and 0 deletions

View File

@ -53,4 +53,8 @@ void test6() {
(int)4; // cast.
(int){4}; // compound literal.
// FIXME: change this to the struct version when we can.
//int A = (struct{ int a;}){ 1}.a;
int A = (int){ 1}.a;
}