Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0619-8.cs
1 // CS0619: `ObsoleteStruct' is obsolete: `Obsolete struct'
2 // Line: 7
3 // Compiler options: -reference:CS0619-8-lib.dll
4
5 interface I
6 {
7         int Foo (int arg1, ObsoleteStruct arg2);
8 }