Chris Lattner | 3b427b3 | 2007-10-11 00:18:28 +0000 | [diff] [blame] | 1 | // RUN: clang -fsyntax-only -verify %s |
Chris Lattner | 1e45efa | 2007-08-28 16:20:14 +0000 | [diff] [blame] | 2 | |
3 | void *test1(void) { return 0; } | ||||
4 | |||||
Eli Friedman | 5101907 | 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 | } |