blob: 87ba5c2b3e065eca31db4cc134eaaf5d243d61a8 [file] [log] [blame]
// RUN: %target-parse-verify-swift
struct S {
init(a:Bool) {
return
}
init(b:Bool) {
return 1 // expected-error {{'nil' is the only return value permitted in an initializer}}
}
}