summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0626-4.cs
blob: d18847ccdbc9731546e1e7106a58b269fb33dadb (plain)
1
2
3
4
5
6
7
8
// CS0626: `ExternClass.ExternMethod()' is marked as an external but has no DllImport attribute. Consider adding a DllImport attribute to specify the external implementation
// Line: 6
// Compiler options: -warnaserror -warn:1

class ExternClass {
        [System.Obsolete]
        public static extern void ExternMethod();
}