blob: 43efea1ea4e6c452aeb177eef5a81ecb5a31c02e [file] [log] [blame]
Richard Smith4f902c72016-03-08 00:32:55 +00001// RUN: %clang_cc1 -std=c++11 -verify -fsyntax-only -fms-extensions -Wno-deprecated -Wc++14-extensions %s
Saleem Abdulrasoolf931a382015-02-16 22:27:01 +00002
3// NOTE: use -Wno-deprecated to avoid cluttering the output with deprecated
4// warnings
5
6[[deprecated("1")]] int function_1();
Aaron Ballmanf25731a2015-02-16 23:12:37 +00007// expected-warning@-1 {{use of the 'deprecated' attribute is a C++14 extension}}
Saleem Abdulrasoolf931a382015-02-16 22:27:01 +00008
9[[gnu::deprecated("3")]] int function_3();
10
11int __attribute__ (( deprecated("2") )) function_2();
12
13__declspec(deprecated("4")) int function_4();
14