summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/circular_dependency/src/hello.mpp
blob: 50f0f2c8f0198100b01927444d52f6e399e49d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export module hello;

import hello3;

export namespace hello {
    class say {
    public:
        say(int data);
        void hello();
    private:
        int data_;
    };
}