xref: /llvm-project/clang/test/CodeGenCXX/cxx20-module-part-1a.cpp (revision ae4dce8659f313ca2034782583d31993212fa8bd)
1*ae4dce86SNathan Sidwell // RUN: %clang_cc1 -std=c++20 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
2*ae4dce86SNathan Sidwell export module Foo:inter;
3*ae4dce86SNathan Sidwell 
4*ae4dce86SNathan Sidwell // CHECK-DAG: @_ZW3Foo4Frobv(
Frob()5*ae4dce86SNathan Sidwell export void Frob() {
6*ae4dce86SNathan Sidwell }
7