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

namespace hello {
    void say_hi();
}

export namespace hello {
    void say_hello();
    void say_xz();
}