mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
17 lines
341 B
C++
17 lines
341 B
C++
#if defined(__has_include)
|
|
# if __has_include(<include/include.h>)
|
|
# error "include directories leaked from private module requirements"
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef FROM_USAGE_REQS
|
|
# error "compile definitions leaked from private module requirements"
|
|
#endif
|
|
|
|
import importable;
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
return from_import();
|
|
}
|