[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / cxx20-module-impl-1a.cpp
blob99db80e119167406f1c638ee469cb36c3d0e23e1
1 // RUN: %clang_cc1 -std=c++20 %S/Inputs/cxx20-module-impl-1a.cpp -triple %itanium_abi_triple -emit-module-interface -o %t
2 // RUN: %clang_cc1 -std=c++20 %s -triple %itanium_abi_triple -fmodule-file=%t -emit-llvm -o - | FileCheck %s
4 module Foo;
6 // CHECK-DAG: @_ZW3Foo8Exportedv(
7 void Exported() {
10 // CHECK-DAG: @_ZW3Foo6Modulev(
11 void Module() {
14 // CHECK-DAG: @_ZW3Foo7Module2v(
15 void Module2() {