Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s -triple x86_64-apple-darwin9 |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 2 | |
| 3 | // rdar://6726818 |
| 4 | void f1() { |
| 5 | const __builtin_va_list args2; |
Chris Lattner | 3f41976 | 2009-04-06 17:07:34 +0000 | [diff] [blame] | 6 | (void)__builtin_va_arg(args2, int); // expected-error {{first argument to 'va_arg' is of type '__builtin_va_list const' and not 'va_list'}} |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 7 | } |
| 8 | |