summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/staticlib2/src/foo.cpp
blob: 25437128390238cf9580b86e1a38b0b926849f92 (plain)
1
2
3
4
5
6
7
8
9
10
module foo;

import bar;

namespace foo {
    int hello() {
        return bar::hello();
    }
}