Avatar
@swift-main -frontend -emit-sil -o var.sil.log struct Hoge { // ↓ ここだけ変える↓ // let foo = 999 var foo = 999 } var global = 0 func main() { let hoge = Hoge() update(hoge: hoge) } func update(hoge: Hoge) { global = hoge.foo }