* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / gcs1031.cs
1 // CS1031: Type expected
2 // Line: 9
3 using System;
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 string [] array = new [] { "Foo", "Bar", "Baz" };
10         }
11 }