summaryrefslogtreecommitdiff
path: root/tests/structs/struct-static-property-initializer.test
blob: 05b7e33b6303f1a702c393cf51227b8b44dd2df7 (plain)
1
2
3
4
5
6
7
8
9
Invalid Code

struct Foo {
	public int i;
	public static string bar { get; set; default = "Foobar"; }
}

void main () {
}