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: aeae63a334b4074a6f10b1fa8af51aff0e1806fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0618-2.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) {
                }
        }
}