Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1577-2.cs
1 // CS1577: Referenced assembly `CS1577-lib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' does not have a strong name
2 // Line: 0
3 // Compiler options: -r:CS1577-lib.dll
4
5 [assembly: System.Reflection.AssemblyKeyFileAttribute ("cs1577.snk")]
6
7 class Test
8 {
9         static void Main ()
10         {
11                 C c = new C ();
12         }
13 }