25 lines
330 B
C++
Raw Normal View History

2023-12-07 09:12:54 +01:00
module;
#include "include/include.h"
#ifndef include_h_included
# error "include define not found"
#endif
#include "includes/includes.h"
#ifndef includes_h_included
# error "includes define not found"
#endif
export module importable;
extern "C++" {
int forwarding();
}
export int from_import()
{
return forwarding();
}