repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
gcs1061-3.cs
blob
121766f85d915a4b468efa07a893865d8c4b256f
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 a using directive or 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
}