2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / tests / test-607.cs
1 using System;
2 using System.Reflection;
3
4 [assembly: AssemblyVersion ("7")]
5
6 class Program
7 {
8         static int Main ()
9         {
10                 Assembly a = Assembly.GetExecutingAssembly ();
11                 if (a.GetName ().Version != new Version (7, 0, 0, 0))
12                         return 1;
13                 return 0;
14         }
15 }