blob: ec7687102c8d3a5442d04405b505c9f48c18e565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// CS0079: The event `Foo.BaseFoo.Changed' can only appear on the left hand side of `+=' or `-=' operator
// Line: 16
using System;
namespace Foo
{
public delegate void VoidHandler ();
public class BaseFoo
{
public extern event VoidHandler Changed;
public string Name {
set {
Changed ();
}
}
}
}
|