a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
320 B
C#
21 lines
320 B
C#
// 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 ();
|
|
}
|
|
}
|
|
}
|
|
}
|