summaryrefslogtreecommitdiff
path: root/tests/parser/with-embedded.vala
blob: 6f61891d145e887a66c4d4400512b87bfa36ff8d (plain)
1
2
3
4
5
6
7
8
void main () {
	if (true)
		with ("foo")
			assert (to_string () == "foo");

	with (10)
		assert (to_string () == "10");
}