summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/internal_partition/src/hello_internal.mpp
blob: 46a86c361059ca6d058f3f0fe2ebb625c60972b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
module;

#include <cstdio>

module hello:part_internal;

namespace hello {
    void say_internal(const char *str) {
        printf("%s\n", str);
    }
}