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

cs0241.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6dadee015970ca875658d5a6af8a01ba21f7bcd (plain)
1
2
3
4
5
6
7
// cs0241.cs: Default parameter specifiers are not permitted
// Line: 5

class TestClass {
        public TestClass(int value = 0) {
        }
}