summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0619-33.cs
blob: 4171c998e93c993792c311099721fc2a85538fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0619-33: `Error.Report(string)' is obsolete: `Obsolete method'
// Line: 11
// Compiler options: -reference:CS0619-33-lib.dll

using System;

class MainClass {
    public static void Main ()
    {
        Error e = new Error ();
        e.Report ("text");
    }
}