Aaron Ballman | 08b0659 | 2014-07-22 12:44:22 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -std=gnu++11 -fsyntax-only -fms-compatibility -verify %s |
| 2 | |
| 3 | void f() { |
| 4 | // GNU-style attributes are prohibited in this position. |
| 5 | auto P = new int * __attribute__((vector_size(8))); // expected-error {{an attribute list cannot appear here}} \ |
| 6 | // expected-error {{invalid vector element type 'int *'}} |
| 7 | |
| 8 | // Ensure that MS type attribute keywords are still supported in this |
| 9 | // position. |
| 10 | auto P2 = new int * __sptr; // Ok |
| 11 | } |
| 12 | |
| 13 | void g(int a[static [[]] 5]); // expected-error {{static array size is a C99 feature, not permitted in C++}} |
Aaron Ballman | 5d153e3 | 2014-08-04 17:03:51 +0000 | [diff] [blame] | 14 | |
| 15 | namespace { |
| 16 | class B { |
| 17 | public: |
Alexander Potapenko | e2e8b0e | 2014-10-03 09:02:53 +0000 | [diff] [blame] | 18 | virtual void test() {} |
Aaron Ballman | 5d153e3 | 2014-08-04 17:03:51 +0000 | [diff] [blame] | 19 | virtual void test2() {} |
| 20 | virtual void test3() {} |
| 21 | }; |
| 22 | |
| 23 | class D : public B { |
| 24 | public: |
Alexander Potapenko | e2e8b0e | 2014-10-03 09:02:53 +0000 | [diff] [blame] | 25 | void test() __attribute__((deprecated)) final {} // expected-warning {{GCC does not allow an attribute in this position on a function declaration}} |
Aaron Ballman | 5d153e3 | 2014-08-04 17:03:51 +0000 | [diff] [blame] | 26 | void test2() [[]] override {} // Ok |
| 27 | void test3() __attribute__((cf_unknown_transfer)) override {} // Ok, not known to GCC. |
| 28 | }; |
| 29 | } |