| Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -verify %s |
| Douglas Gregor | 6a588dd | 2009-06-17 19:49:00 +0000 | [diff] [blame] | 2 | |
| 3 | namespace A | ||||
| 4 | { | ||||
| 5 | } | ||||
| 6 | |||||
| 7 | namespace B __attribute__ (( static )) = A; // expected-error{{attributes can not be specified on namespace alias}} | ||||
| 8 | |||||