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 3 4 module Foo; 5 6 // CHECK-DAG: @_ZW3Foo8Exportedv( Exported()7void Exported() { 8 } 9 10 // CHECK-DAG: @_ZW3Foo6Modulev( Module()11void Module() { 12 } 13 14 // CHECK-DAG: @_ZW3Foo7Module2v( Module2()15void Module2() { 16 } 17