Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-447.cs
1 // Compiler options: -r:gtest-447-2-lib.dll -r:gtest-447-3-lib.dll
2
3 using System;
4
5 class B
6 {
7         public static int Main ()
8         {
9                 if (C.Print ("x") != "x")
10                         return 1;
11
12                 return 0;
13         }
14 }