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

cs0618-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea6bf34dac3a1064e73be6100af77b7456c87615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0618.cs: 'ObsoleteDispose' is obsolete: 'Class is obsolete'
// Line: 9
// Compiler options: -reference:CS0618-2-lib.dll -warnaserror

class AA
{
        public AA ()
        {
                using (ObsoleteDispose od = ObsoleteDispose.Factory) {
                }
        }
}