summaryrefslogtreecommitdiff
path: root/tests/semantic/params-array-objectcreation-struct-length.test
blob: b4cd0016e277f4caec693d382f5e1a2cae758802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Invalid Code

struct Foo {
	public int i;
	public string s;
}

class Bar {
	public Bar (params Foo foov[3]) {
	}
}

void main () {
}