llvm-for-llvmta/tools/clang/test/CXX/dcl.dcl/dcl.spec/dcl.inline/p1.cpp

9 lines
323 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -std=c++1z -verify %s
inline int f(); // ok
inline int n; // ok
inline typedef int t; // expected-error {{'inline' can only appear on functions and non-local variables}}
inline struct S {}; // expected-error {{'inline' can only appear on functions and non-local variables}}
inline struct T {} s; // ok