summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/internal_partition/src/hello.mpp
blob: 0966f029ea7119cd89028509f34a0693bc20b5fa (plain)
1
2
3
4
5
6
7
8
9
export module hello;

import :part_internal;

export namespace hello {
    void say(const char* str) {
        say_internal(str);
    }
}