xref: /minix3/external/bsd/llvm/dist/clang/test/FixIt/fixit-newline-style.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -pedantic -Wunused-label -x c %s 2>&1 | FileCheck %s -strict-whitespace
2 
3 // This file intentionally uses a CRLF newline style
4 // <rdar://problem/12639047>
5 // CHECK: warning: unused label 'ddd'
6 // CHECK-NEXT: {{^  ddd:}}
7 // CHECK-NEXT: {{^  \^~~~$}}
f()8 void f() {
9   ddd:
10   ;
11 }
12