brintos

brintos / llvm-project-archived public Read only

0
0
Text · 430 B · 1301f2f Raw
9 lines · cpp
1// RUN: %clang_cc1 -std=c++17 -fms-extensions -verify %s2 3template <class>4struct S {};5 6[[deprecated]] extern template struct S<int>;              // expected-error {{an attribute list cannot appear here}}7__attribute__((deprecated)) extern template struct S<int>; // expected-error {{an attribute list cannot appear here}}8__declspec(deprecated) extern template struct S<int>;      // expected-error {{expected unqualified-id}}9