tests: fixture 파일명과 unit 동기화

This commit is contained in:
2026-08-17 04:14:30 +09:00
parent fe5f853feb
commit d22964cdb6
119 changed files with 286 additions and 119 deletions
-10
View File
@@ -1,10 +0,0 @@
unit oktemp;
fn read(r: &i32) -> i32 { return r.^; }
fn test() -> i32 {
var x: i32 = 1;
let v = read(&x);
x += 1;
return v + x;
}