[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / test-594.cs
blob2d0ff9ef9c7696194d4b38375800512fd6235120
1 using System;
2 using System.Reflection;
4 [assembly: AssemblyVersion ("2.3.*")]
6 public class Test
8 public static int Main ()
10 var v = typeof (Test).Assembly.GetName ().Version;
11 if (v.Major != 2)
12 return 1;
14 if (v.Minor != 3)
15 return 2;
17 if (v.Build < 1)
18 return 3;
20 if (v.Revision < 1)
21 return 4;
23 return 0;