mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-11 17:56:05 +00:00
11 lines
138 B
Plaintext
11 lines
138 B
Plaintext
// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
|
|
|
|
struct S { ~S(); };
|
|
|
|
int mightthrow();
|
|
|
|
int test() {
|
|
S s;
|
|
mightthrow();
|
|
}
|