CMake/Tests/RunCMake/CXXModules/examples/try-compile/importable.cxx
Ben Boeckel b768d293c5 cmCoreTryCompile: use the source type context for source files
Also add a test to `RunCMake/CXXModules` to test `try_compile` with C++
modules.

Fixes: #25097
2023-07-31 11:59:47 -04:00

7 lines
68 B
C++

export module importable;
export int from_import()
{
return 0;
}