Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0034-rdar21982453.swift
Slava Pestov 29409b45d6 Add testcase for a bug that seems to be fixed
Swift SVN r30774
2015-07-29 18:23:21 +00:00

8 lines
122 B
Swift

// RUN: %target-swift-frontend %s -emit-silgen
func a() {
func f(x: Void -> Any) { }
var g = { 3 }
f { g }
}