Add stress tests

Signed-off-by: szdytom <szdytom@qq.com>
This commit is contained in:
方而静 2023-08-27 14:30:51 +08:00
parent 7857473434
commit 0296e6ee1d
Signed by: szTom
GPG Key ID: 072D999D60C6473C
3 changed files with 48450 additions and 0 deletions

File diff suppressed because one or more lines are too long

48427
tests/ok/many-functions.ac Normal file

File diff suppressed because it is too large Load Diff

12
tests/ok/var-shadow.ac Normal file
View File

@ -0,0 +1,12 @@
struct {
T = Fn<a, b, c>(z: Fn(<>, <a>, b), y: Fn(<>, <b>, c)) -> Fn(<>, <a>, c) {
w = z;
return Fn<>(h: a) -> c {
w = y;
return w(z(h));
};
};
} main;