Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0612-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd15f05a31d12b53566d6bd788efc0d7c43371c0 (plain)
1
2
3
4
5
6
7
8
9
// Compiler options: -r:CS0612-2-lib.dll -warnaserror

public class Bar {
        public static int Main ()
        {
                Foo foo = new Foo ();
                return foo.Bar;
        }
}