Add a Main().
[mono.git] / mcs / errors / cs1574-5.cs
1 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
2 using System;
3
4 /// <see cref="Goo"/> ... does not exist
5 public class Test
6 {
7         string Foo {
8                 get { return null; }
9         }
10 }
11
12 class X
13 {
14         static void Main ()
15         { }
16 }