Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-410.cs
1 // Compiler options: -r:test-410-lib.dll
2
3 using System;
4 using Q;
5
6 public class B {
7         public static int Main() {
8                 return (A.ToString() == "Hello world!") ? 0 : 1;
9         }
10 }