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 Sidwellexport void Frob() { 6*ae4dce86SNathan Sidwell } 7