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
+12
View File
@@ -0,0 +1,12 @@
unit baddrop;
struct Box {
value: i32,
fn drop(self: &mut Self) { self.value = 0; }
}
fn bad() -> void {
var b: Box = Box{ value: 1 };
b.drop();
}