// RUN: %clang_cc1 -std=c++11 -ast-print -fms-extensions %s | FileCheck %s
//
// CHECK: int x __attribute__((aligned(4)));
int x ;
// FIXME: Print this at a valid location for a __declspec attr.
// CHECK: int y __declspec(align(4));
__declspec int y;
// CHECK: int z {{\[}}[gnu::aligned(4)]];
int z ;
// CHECK: __attribute__((deprecated("warning")));
int a ;
// CHECK: int b {{\[}}[gnu::deprecated("warning")]];
int b ;
// CHECK: __declspec(deprecated("warning"))
__declspec int c;
// CHECK: int d {{\[}}[deprecated("warning")]];
int d ;
// CHECK: __attribute__((deprecated("warning", "fixit")));
int e ;
// CHECK: int cxx11_alignas alignas(4);
alignas int cxx11_alignas;
// CHECK: int c11_alignas _Alignas(alignof(int));
int c11_alignas;
// CHECK: void foo() __attribute__((const));
void ;
// CHECK: void bar() __attribute__((__const));
void ;
// FIXME: It's unfortunate that the string literal prints with the below three
// cases given that the string is only exposed via the [[nodiscard]] spelling.
// CHECK: int f1() __attribute__((warn_unused_result("")));
int ;
// CHECK: {{\[}}[clang::warn_unused_result("")]];
int f2 ;
// CHECK: {{\[}}[gnu::warn_unused_result("")]];
int f3 ;
// FIXME: ast-print need to print C++11
// attribute after function declare-id.
// CHECK: {{\[}}[noreturn]];
void f4 ;
// CHECK: __attribute__((gnu_inline));
inline void ;
// CHECK: {{\[}}[gnu::gnu_inline]];
inline void f7 ;
// arguments printing
// CHECK: __attribute__((format(printf, 2, 3)));
void ;
// CHECK: int m __attribute__((aligned(4
// CHECK: int n alignas(4
// CHECK: static int f() __attribute__((pure))
// CHECK: static int g() {{\[}}[gnu::pure]]
;
// CHECK: int m __attribute__((aligned(4
// CHECK: int n alignas(4
// CHECK: static int f() __attribute__((pure))
// CHECK: static int g() {{\[}}[gnu::pure]]
;
// CHECK: using Small2 {{\[}}[gnu::mode(byte)]] = int;
using Small2 = int;