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

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