2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729-13.cs
blob3ef7376bfde84ed1cc3d7a0bf82aa8ff20bd5079
1 // CS1729: The type `object' does not contain a constructor that takes `1' arguments
2 // Line: 8
4 using System;
6 class C
8 int a = "a";
10 public C (string s)
11 : base (1)
15 public C (int i)
16 : base (i)