Reorganize test files.

This commit is contained in:
ykiko
2024-10-20 14:08:14 +08:00
parent d56125f023
commit ca7e09606c
39 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
export module A;
export int f() {
return 42;
}

View File

@@ -0,0 +1,3 @@
export module B;
import A;

View File

@@ -0,0 +1,3 @@
export module C;
import A;

View File

@@ -0,0 +1,7 @@
import B;
import C;
int main() {
int x = 42;
return 42;
}