Add a test for r158229 (overlapping fixits). This was PR10696!

llvm-svn: 158238
This commit is contained in:
Jordan Rose 2012-06-08 22:46:04 +00:00
parent 2710f1b049
commit 9b4cbec703
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// RUN: %clang_cc1 -fsyntax-only -std=c++11 2>&1 %s | FileCheck -strict-whitespace %s
struct A {
unsigned int a;
};
// PR10696
void testOverlappingInsertions(int b) {
A var = { b };
// CHECK: A var = { b };
// CHECK: ^
// CHECK: static_cast<unsigned int>( )
}