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
/
cs1061-9.cs
blob
2d838ce4d338a5984002a8e1346232df29c4be95
1
// CS1061: Type `int' does not contain a definition for `E' and no extension method `E' of type `int' could be found. Are you missing an assembly reference?
2
// Line: 7
3
4
class
T
{
5
public static int
Main
(
string
[]
args
)
6
{
7
int
x
=
1
.
E
;
8
return
0
;
9
}
10
}