We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Following code should fail to compile
func bar(arg: Int)->Int { if (arg) return 42; return 0; } func foo()->Int { return bar(); }