summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/inline_and_template/src/foo_impl.cpp
blob: c44ef849bbae7c5a4db132884d8d97d55e47d361 (plain)
1
2
3
4
5
6
7
8
module foo;

template <>
struct foo<int> {
    constexpr const char* hello(void) const {
        return "hello int!";
    }
};