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

cs0619-34.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f7eba33ae26a4ac34ee62d4e620a1fb9d2fc60d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// cs0619-34.cs: `Error' is obsolete: `Obsolete struct'
// Line: 17

using System;

[Obsolete ("Obsolete struct", true)]
struct Error
{
    public static void Report (bool arg)
    {
    }
}

class MainClass {
    public static void Main ()
    {
        Error.Report (false);
    }
}