Closed
Description
opened on Oct 14, 2015
The following compiles,
var foo:[string, string] = ['','', '', '']
while this one not:
var foo:[string, string] = ['','', '', 1]
The first one should not compiles, since the initializer has 3 elements while the type says 2.
Activity