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

cs1041.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e2ad89c3a71c90c4b02630bf560e8f05d1f633c (plain)
1
2
3
4
5
6
// cs1041.cs: Identifier expected: `int' is a keyword
// Line: 5

public class Test {
    void T (int int) {}
}