Merge pull request #1693 from Garciat/fix-assembly-get-satellite
[mono.git] / mcs / tests / test-static-using-09.cs
1 // Compiler options: -r:test-static-using-09-lib.dll
2
3 using static Constants;
4
5 static class Program
6 {
7         static void Main ()
8         {
9                 System.Console.WriteLine (One);
10         }
11 }