* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs1606.cs
1 // cs1606.cs: Could not sign the assembly. ECMA key can only be used to delay-sign assemblies
2 // Line: 0
3
4 using System.Reflection;
5
6 [assembly: AssemblyKeyFile ("cs1606.pub")]
7
8 // note that cs1606.pub is the ECMA key (same as mcs/class/ecma.pub)
9 // this is the same as cs1548-3.cs (Missing private key in strongname file)
10 // expect the the error code is different for the ECMA key
11
12 class MyClass {
13
14         public static void Main (string [] args)
15         {
16         }
17 }