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

test-530.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66fbde75e50afc14aa5873b7b6c1f5c2d4b961c8 (plain)
1
2
3
4
5
6
7
8
9
10
//
// Use of the \uXXXX sequence in identifiers
// Fixes #52019, #79064
//
class X {
	static void e(params object[] args\u03c4) {
        }
	public static void Main () {
}
}