Files
CMake/Tests/RunCMake/CXXModulesCompile/scan_props/never_scan.ixx
T
Ben Boeckel 3e7ffddf2f Tests/CXXModulesCompile: remove excess examples/ directory
Now that the test is split, it doesn't make sense to have the directory
anymore. It also helps with shortening paths.
2025-11-14 09:27:00 -05:00

11 lines
158 B
C++

#if SCANNING_CONTROL
# ifdef CMAKE_SCANNED_THIS_SOURCE
# error "This file should not have been scanned"
# endif
#endif
int never_scan()
{
return 0;
}