Merged changes in master libmonoruntime into PR.
[mono.git] / mcs / errors / cs0619-33.cs
1 // CS0619-33: `Error.Report(string)' is obsolete: `Obsolete method'
2 // Line: 11
3 // Compiler options: -reference:CS0619-33-lib.dll
4
5 using System;
6
7 class MainClass {
8     public static void Main ()
9     {
10         Error e = new Error ();
11         e.Report ("text");
12     }
13 }