bolt/deps/llvm-18.1.8/clang/test/CXX/dcl.dcl/dcl.spec/dcl.inline/p1.cpp
2025-02-14 19:21:04 +01:00

8 lines
323 B
C++

// 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