From 95341bf4d4be875b599bcc59e01a69fdfb7f8e30 Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Wed, 30 May 2012 22:41:32 +0000 Subject: Add a test for '%@' suggestion for classes. llvm-svn: 157718 --- clang/test/FixIt/format.m | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'clang') diff --git a/clang/test/FixIt/format.m b/clang/test/FixIt/format.m index d412b8dbfc5..d9589a0148d 100644 --- a/clang/test/FixIt/format.m +++ b/clang/test/FixIt/format.m @@ -68,3 +68,14 @@ void test_block_correction (block_t x) { // CHECK: fix-it:"{{.*}}":{64:11-64:13}:"%@" // CHECK: fix-it:"{{.*}}":{65:11-65:14}:"%@" } + +void test_class_correction (Class x) { + NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'Class'}} + NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'Class'}} + NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'Class'}} + NSLog(@"%@", x); // no-warning + // CHECK: fix-it:"{{.*}}":{73:11-73:13}:"%@" + // CHECK: fix-it:"{{.*}}":{74:11-74:13}:"%@" + // CHECK: fix-it:"{{.*}}":{75:11-75:14}:"%@" +} + -- cgit v1.2.3