aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/verifier/statement_return.good
blob: 9a5246eff6427a78a56c2acd19e66e15a5ff95a8 (plain)
1
2
3
4
5
6
7

() f() { return; }
int g() { return 0; }
int h() { return -1; }
bool i() { return :true; }
bool j() { return bool:true; }
(int, float) k() { return (12, 3.4); }