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

test-222.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6dd1079c41888c2c77b5625fc7ae68ebd301770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// This is just a compilation test
//

using System;


class Class_1 {
        public UIntPtr Valid() {
                return new UIntPtr(1);
        }
}
    
public class MainClass {
        
        public static int Main() 
	{
		return 0;
	}
}