[mono/tests] Fix out of tree build.
[mono-project.git] / mcs / tests / test-static-using-05.cs
blobfbeb125e164716ab2e09159b320a3dca52e3421c
1 using static System.Console;
2 using static System.Linq.Enumerable;
4 class Test
6 static void Main()
8 var range = Range (5, 17);
9 WriteLine (range.Where (i => i % 2 == 0).Count ());