f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
14 lines
516 B
Objective-C
14 lines
516 B
Objective-C
// RUN: %clang_cc1 -arcmt-check -verify %s
|
|
// RUN: not %clang_cc1 -arcmt-check -verify %t.invalid 2>&1 | FileCheck %s
|
|
|
|
#if 0
|
|
// expected-error {{should be ignored}}
|
|
#endif
|
|
|
|
#error should not be ignored
|
|
// expected-error@-1 {{should not be ignored}}
|
|
|
|
// CHECK: error: no expected directives found: consider use of 'expected-no-diagnostics'
|
|
// CHECK-NEXT: error: 'error' diagnostics seen but not expected:
|
|
// CHECK-NEXT: (frontend): error reading '{{.*}}verify.m.tmp.invalid'
|
|
// CHECK-NEXT: 2 errors generated.
|