summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/namespace/src/main.cpp
blob: 93cc427a484885a81aa89874181c51caba6ea7d3 (plain)
1
2
3
4
5
6
7
8
9
import hello;

int main() {
    hello::data__ = 123;
    hello::say_hello();
    hello::say(sizeof(hello::say)).hello();
    return 0;
}