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

test-111.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4af5997bef9b2bd00fb6ad9fc9bdd85a236c34b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
class T {
        static object get_obj() {
                return new object ();
        }
        static int Main() {
                object o = get_obj ();
                if (o == "string")
                        return 1;
                return 0;
        }
}