2023-12-07 09:12:54 +01:00
|
|
|
#if defined(__has_include)
|
|
|
|
# if __has_include(<include/include.h>)
|
|
|
|
# error "include directories leaked from private module requirements"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
#ifdef FROM_USAGE_REQS
|
|
|
|
# error "compile definitions leaked from private module requirements"
|
|
|
|
#endif
|
|
|
|
|
2023-12-07 09:12:54 +01:00
|
|
|
import importable;
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
return from_import();
|
|
|
|
}
|