Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0619-33.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6806d6f1893840cd2567297690f1f7c18a9c221b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0619.cs: '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");
    }
}