a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
12 lines
244 B
C#
12 lines
244 B
C#
// CS0612: `Foo.Bar' is obsolete
|
|
// Line: 8
|
|
// Compiler options: -r:CS0612-2-lib.dll -warnaserror
|
|
|
|
public class Bar {
|
|
public static int Main ()
|
|
{
|
|
Foo foo = new Foo ();
|
|
return foo.Bar;
|
|
}
|
|
}
|