Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs0618.cs
1 // CS0618: `Name.Feat.Feat(string, string, int, params object[])' is obsolete: `AaA'
2 // Line: 22
3 // Compiler options: -warnaserror
4
5 using System;
6
7 namespace Name
8 {
9         public class A
10         {
11         }
12         
13         public class Feat
14         {
15                 #region Constructors
16
17                 [Obsolete ("AaA")]
18                 public Feat(string name, string description, int arg, params object[] featReqs)
19                 {}
20
21                 public Feat(string name, string description)
22                         : this(name, description, 4)
23                 {}
24
25                 public Feat(string name)
26                         : this(name, string.Empty)
27                 {}
28
29                 #endregion
30         }
31 }