Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs7034.cs
1 // CS7034: The specified version string `0.0.0.80420' does not conform to the required format - major[.minor[.build[.revision]]]
2 // Line: 7
3
4 using System;
5 using System.Reflection;
6
7 [assembly: AssemblyVersion ("0.0.0.80420")]
8
9 public class Test {
10
11         public static int Main ()
12         {
13                 return 1;
14         }
15 }