cs0150.cs 166 B

1234567891011121314
  1. // cs0150.cs :
  2. // Line :
  3. using System;
  4. public class Blah {
  5. public static void Main ()
  6. {
  7. int foo = 6;
  8. int [] i = new int [foo] { 0, 1, 2, 3, 4, 5 };
  9. }
  10. }