You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
330 B

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();
}