summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/namespace2/src/mod_impl.cpp
blob: 1adf6570eb7c16e21ef558a0bbadd8286308fb2c (plain)
1
2
3
4
5
6
7
8
module mod;
import hello;

namespace mod {
    int foo() {
        return hello::data__;
    }
}