Chris Lattner | 5e4c75f | 2007-10-11 00:18:28 +0000 | [diff] [blame] | 1 | // RUN: clang -fsyntax-only -verify %s |
Chris Lattner | 613cef8 | 2007-08-28 16:20:14 +0000 | [diff] [blame] | 2 | |
3 | void *test1(void) { return 0; } | ||||
4 | |||||
Eli Friedman | 1242fff | 2008-02-06 22:48:16 +0000 | [diff] [blame^] | 5 | void test2 (const struct {int a;} *x) { |
6 | x->a = 10; // expected-error {{read-only variable is not assignable}} | ||||
7 | } |