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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1001-3.cs
blob
b09054c272e88ea2214a26bf58312ef5e7f4e7c6
1
// CS1001: Unexpected symbol `)', expecting identifier
2
// Line: 8
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
object
o
= (
int
) =>
null
;
9
}
10
}