* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / cs1501-3.cs
1 // cs1501-3.cs: No overload for method `X' takes `2' arguments
2 // Line: 8
3
4 public struct X {
5         public X(int i) { }
6         
7         public static void Main() {
8                 X x = new X("foo", "bar");
9         }
10 }