misc/vim: inform the user when no results are found
[nit.git] / tests / shootout_nsieve.nit
index acc2856..2137a3a 100644 (file)
@@ -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