blob: 0ef8b69c1d58d66adc55e4a57b6286fc93e8a5e9 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -warn-long-expression-type-checking=1 -warn-long-function-bodies=1 %s
@_silgen_name("generic_foo")
func foo<T>(_ x: T) -> T
@_silgen_name("foo_of_int")
func foo(_ x: Int) -> Int
func test(m: Double) -> Int {
// expected-warning@-1 {{global function 'test(m:)' took}}
return Int(foo(Float(m) / 20) * 20 - 2) + 10
// expected-warning@-1 {{expression took}}
}