bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/attr-annotate-constructor.cpp
2025-02-14 19:21:04 +01:00

10 lines
200 B
C++

// RUN: %clang %s -S -emit-llvm -target x86_64-unknown-linux -o -
// Test annotation attributes on constructors do not crash.
class Foo {
public:
[[clang::annotate("test")]] Foo() {}
};
Foo foo;