mirror of
https://github.com/opnsense/src.git
synced 2026-03-10 18:21:00 -04:00
10 lines
138 B
C++
10 lines
138 B
C++
// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep unwind
|
|
|
|
struct S { ~S(); };
|
|
|
|
int mightthrow();
|
|
|
|
int test() {
|
|
S s;
|
|
mightthrow();
|
|
}
|