summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/dependence2/src/bar.mpp
blob: 140924a8537671812089a8d73343ce6222df1c2d (plain)
1
2
3
4
5
6
7
8
export module bar;
import zoo;

export namespace bar {
    int add(int a, int b) {
        return zoo::add(a, b);
    }
}