repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs1644-66.cs
blob
3f393b50d307d4df750753fa0c712816af033433
1
// CS1644: Feature `expression body event accessor' cannot be used because it is not part of the C# 6.0 language specification
2
// Line: 11
3
// Compiler options: -langversion:6
4
5
using
System
;
6
7
class
C
8
{
9
public event
EventHandler Event
10
{
11
add
=>
Ignore
();
12
}
13
14
static void
Ignore
()
15
{
16
}
17
}