Douglas Gregor | 4814fb5 | 2011-02-03 23:41:12 +0000 | [diff] [blame] | 1 | // RUN: c-index-test -test-load-source all -fspell-checking %s 2> %t |
| 2 | // RUN: FileCheck %s < %t |
| 3 | struct X { |
| 4 | int wibble; |
| 5 | }; |
| 6 | |
| 7 | #define MACRO(X) X |
| 8 | |
| 9 | void f(struct X *x) { |
| 10 | // CHECK: error: no member named 'wobble' in 'struct X'; did you mean 'wibble'? |
| 11 | // CHECK-NOT: FIX-IT |
| 12 | // CHECK: note: 'wibble' declared here |
| 13 | MACRO(x->wobble = 17); |
| 14 | // CHECK: error: no member named 'wabble' in 'struct X'; did you mean 'wibble'? |
| 15 | // CHECK: FIX-IT: Replace [17:6 - 17:12] with "wibble" |
| 16 | // CHECK: note: 'wibble' declared here |
| 17 | x->wabble = 17; |
| 18 | } |