[Tests] Fix Mono.Data.Tds tests on iOS (#5501)
[mono.git] / mcs / errors / cs1548.cs
1 // CS1548: Error during assembly signing. The specified key file `file_not_found.snk' does not exist
2 // Line: 0
3
4 using System.Reflection;
5
6 [assembly: AssemblyKeyFile ("file_not_found.snk")]
7
8 class MyClass {
9
10         public static void Main (string [] args)
11         {
12         }
13 }