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

test-267.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3569d7990ea362ee33e118488321fcfa9d5f209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
 
public class X
{
    [CLSCompliant (false)]
    public static string Text ()
    {
        return "PASS";
    }
   
    public static int Main ()
    {
        Console.WriteLine (Text ());
        return 0;
    }
}