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

test-410.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a21c465cda3be6303e2c44db92737b71414390f (plain)
1
2
3
4
5
6
7
8
9
10
// Compiler options: -r:test-410-lib.dll

using System;
using Q;

public class B {
	public static int Main() {
		return (A.ToString() == "Hello world!") ? 0 : 1;
	}
}