summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/user_headerunit/src/hello.mpp
blob: f2e4022f77ef22afc4043dc6950f45772890219c (plain)
1
2
3
4
5
6
7
8
9
10
11
module;
#include <cstdio>
import "header.hpp";

export module hello;

export namespace hello {
    void say(const char *arg) {
        printf("%s: %s\n", FOO, arg);
    }
}