DEBSOURCES
Skip Quicknav
sources / qbs / 3.1.2-2 / tests / auto / blackbox / testdata / cxx-modules / lib-mod / lib / hello.cppm
1234567891011
module; #include "dllexport.h" #include <iostream> export module helloworld; export LIB_EXPORT void hello() { std::cout << "Hello world!\n"; }