Skip to content

Instantly share code, notes, and snippets.

@paulofaria
Last active December 18, 2015 04:11
Show Gist options
  • Save paulofaria/fa86871a9988076868bf to your computer and use it in GitHub Desktop.
Save paulofaria/fa86871a9988076868bf to your computer and use it in GitHub Desktop.
func foo(closure: Void -> Int) {}

extension Dictionary {
    func bar() {
        var x = 0
        let y = x
        foo { y }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment