You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 4, 2023. It is now read-only.
let _kotliftOptional1 = foo("bar", b: [String: String](), c: { value in outerValue: value }); if _kotliftOptional1 == nil { return "fail1" }; var a = _kotliftOptional1!
a = foo("bar", b: [String: String](), c: { value in outerValue: value })
fooFunc("bar", b: [String: String](), c: { value in outerValue: value })
if a != "bar" {
print("fail: a=\(a) (should be bar)")
return "fail2"
}
if outerValue != "a=bar" {
print("fail: outerValue=\(outerValue) (should be a=bar)")