brintos

brintos / llvm-project-archived public Read only

0
0
Text · 262 B · 379f5e4 Raw
14 lines · plain
1// RUN: %clang_cc1 -std=c++20 %s -fexceptions -fcxx-exceptions -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s2 3export module func;4class C {5public:6    void member() try {7 8    } catch (...) {9 10    }11};12 13// CHECK: define {{.*}}@_ZNW4func1C6memberEv14