summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/stdmodules/test/test.cpp
blob: 7c6f7b4df156ef7a73d0c1d5cc1dd07742338f59 (plain)
1
2
3
4
5
6
7
8
9
import std;

import my_module;

using namespace std;

int main(int argc, char** argv) {
    cout << my_sum(1, 1) << endl;
}