2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0618.cs
blob2bbade27a283161eec7b84cf01b4f31645f4239d
1 // cs0618.cs: `Name.Feat.Feat(string, string, int, params object[])' is obsolete: `AaA'
2 // Line: 22
3 // Compiler options: -warnaserror
5 using System;
7 namespace Name
9 public class A
13 public class Feat
15 #region Constructors
17 [Obsolete ("AaA")]
18 public Feat(string name, string description, int arg, params object[] featReqs)
21 public Feat(string name, string description)
22 : this(name, description, 4)
25 public Feat(string name)
26 : this(name, string.Empty)
29 #endregion