1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -pedantic -Wunused-label -x c %s 2>&1 | FileCheck %s -strict-whitespace 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc // This file intentionally uses a CRLF newline style 4*f4a2713aSLionel Sambuc // <rdar://problem/12639047> 5*f4a2713aSLionel Sambuc // CHECK: warning: unused label 'ddd' 6*f4a2713aSLionel Sambuc // CHECK-NEXT: {{^ ddd:}} 7*f4a2713aSLionel Sambuc // CHECK-NEXT: {{^ \^~~~$}} f()8*f4a2713aSLionel Sambucvoid f() { 9*f4a2713aSLionel Sambuc ddd: 10*f4a2713aSLionel Sambuc ; 11*f4a2713aSLionel Sambuc } 12