
Close https://github.com/llvm/llvm-project/issues/108732 This looks liek an oversight mostly.
15 lines
191 B
C++
15 lines
191 B
C++
// RUN: %clang_cc1 -std=c++20 %s -ast-dump | FileCheck %s
|
|
export module mod;
|
|
|
|
extern "C++" {
|
|
class C
|
|
{
|
|
public:
|
|
bool foo() const {
|
|
return true;
|
|
}
|
|
};
|
|
}
|
|
|
|
// CHECK: foo {{.*}}implicit-inline
|