summaryrefslogtreecommitdiff
path: root/tests/control-flow/while-false.vala
blob: 44e136a4f8a6a47c28efcbfc7e95fa56cbb47162 (plain)
1
2
3
4
5
void main () {
	while (false) {
		assert_not_reached ();
	}
}