X-Git-Url: http://nitlanguage.org diff --git a/tests/shootout_nsieve.nit b/tests/shootout_nsieve.nit index acc2856..2137a3a 100644 --- a/tests/shootout_nsieve.nit +++ b/tests/shootout_nsieve.nit @@ -17,7 +17,7 @@ fun nsieve(n: Int): Int do var count = 0 - var array = new FlatBuffer.with_capacity(n) + var array: Buffer = new FlatBuffer.with_capacity(n) for i in [0..n[ do array.chars[i] = 'o' end