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: cdf9b6bb301952a0c7281f4b671f23180c9ece7d (plain)
1
2
3
4
5
6
// cs0711.cs: 'StaticClass': Static classes cannot contain destructors
// Line: 5

static class StaticClass {
        ~StaticClass () {}
}