Avatar
omochimetaru 2/9/2018 4:30 PM
そもそも使えないんじゃないですかねえ
4:32 PM
そもそもinout引数はエスケープもできないし。 func aaa(_ x: inout Int) -> () -> Void { func bbb() { x = 3 } return bbb } var t: Int = 3 aaa(&t)
4:33 PM
Swift:: Error: nested function cannot capture inout parameter and escape return bbb ^ Swift:: Error: expression resolves to an unused function aaa(&t) ^~~~~~~