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

cs0711.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1633befba3cebe7ae7b125466be79ce64626c7b (plain)
1
2
3
4
5
6
// CS0711: `StaticClass': Static classes cannot contain destructor
// Line: 5

static class StaticClass {
        ~StaticClass () {}
}