summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/inline_and_template/src/say.mpp
blob: ab3290cf9e6f330752b3eea6e6128c3828244436 (plain)
1
2
3
4
5
6
7
8
9
10
11
module;
#include <cstdio>

export module say;
export class say {
public:
    template <int N>
    void hello() {
        std::printf("hello, say class: %d\n", N);
    }
};