blob: 51dcf086845a1db49a5206962d4e4552c216b785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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;
}
}
|