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