/development/compiler/tests/fixtures/source_corpus/invalid/fallible-propagation.nct
fallible-propagation.nct
// Invalid: postfix `?` on T! requires a fallible return layer.
func main(): i32 {
return answer()?
}
func answer(): i32! {
return 0
}