Skip to content

Instantly share code, notes, and snippets.

@tapthaker
Last active January 12, 2021 18:39
Show Gist options
  • Save tapthaker/606ca66c6c9229d8fe69ca0110acb34d to your computer and use it in GitHub Desktop.
Save tapthaker/606ca66c6c9229d8fe69ca0110acb34d to your computer and use it in GitHub Desktop.
SR_8536_assign_member_function_to_closure.swift
var bar: () -> () = {}
class Foo {
func baz() {}
init() {
bar = baz // We oughta warn about capturing 'self' implicitly.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment