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

cs0626-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 585941dae4445b584be4fd0127d28cd83b96393f (plain)
1
2
3
4
5
6
7
// cs0626.cs: Method, operator, or accessor 'ExternClass.ExternMethod()' is marked external and has no attributes on it. Consider adding a DllImport attribute to specify the external implementation
// Line: 6
// Compiler options: -warnaserror -warn:1

class ExternClass {
        public static extern int ExternMethod { set; }
}