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

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