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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs8200-5.cs
blob
ce4e647c155e6690599e249dc1b4af8c4ac51956
1
// CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
2
// Line: 6
3
4
public class
C
5
{
6
bool
res
=
Foo
()
is string
s
;
7
8
static object
Foo
()
9
{
10
return null
;
11
}
12
}