xref: /llvm-project/clang/test/CodeGenCXX/attr-annotate-constructor.cpp (revision c6d70722b49db01914d5f64cc86ea5ed609ad9fd)
1 // RUN: %clang %s -S -emit-llvm -target x86_64-unknown-linux -o -
2 
3 // Test annotation attributes on constructors do not crash.
4 
5 class Foo {
6 public:
Foo()7   [[clang::annotate("test")]] Foo() {}
8 };
9 
10 Foo foo;
11