summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/partitions_implunit2/src/foo.mpp
blob: dc1293e8250baf5d1691be514e828fe9169c082a (plain)
1
2
3
4
5
6
7
8
// Foo.mpp
export module Foo;

import :Impl; // can't export import Impl because Impl is a implementation partition unit

export void foo() {
    bar();
}