diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-07-12 17:35:39 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-07-12 17:35:39 +0000 |
commit | cfd41cfd0bd199672449db88d0502d37131a5c1f (patch) | |
tree | d1d883b97540a66d9ac5feb36096ad78fb2d9841 /test/Sema/struct-decl.c | |
parent | 52bc56a296b11b4fc6bf5ddf4ded5262f6484bdb (diff) |
Add test case for <rdar://problem/8177927> (which triggered an assertion failure in SemaChecking).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/struct-decl.c')
-rw-r--r-- | test/Sema/struct-decl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Sema/struct-decl.c b/test/Sema/struct-decl.c index f8880530f9..3639d2479b 100644 --- a/test/Sema/struct-decl.c +++ b/test/Sema/struct-decl.c @@ -41,3 +41,8 @@ struct s0 { }; struct s0 f0(void) {} + +// <rdar://problem/8177927> - This previously triggered an assertion failure. +struct x0 { + unsigned int x1; +}; |