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


using System;

public delegate void Handler ();

class Test {
	extern event Handler OnFoo;
}