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
-13
View File
@@ -1,13 +0,0 @@
unit bad_clos;
struct FileLike {
handle: i32,
fn close(self: Self) -> !void { self.handle = 0; }
fn drop(self: &mut Self) { self.handle = 0; }
}
fn bad() -> !void {
let file: FileLike = FileLike{ handle: 7 };
try file.close();
file.close();
}