summaryrefslogtreecommitdiff
path: root/tests/nullability/bug611223.vala
blob: 9fbf30c07101dc2c47c175939ae4c89659247e3c (plain)
1
2
3
4
5
6
7
void main() {
	string? nullable = null;
	string non_null = nullable ?? "";
	string? some_null = nullable ?? null;
	string also_non_null = null ?? non_null;
	string really_non_null = non_null ?? nullable;
}