blob: 17d74a7ea74c390867497d09ce0720b8b7486060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0179: `Bar.OnFoo.add' cannot declare a body because it is marked extern
// Line: 9
using System;
public delegate void FooHandler ();
class Bar {
extern event FooHandler OnFoo {
add { }
remove { }
}
}
|