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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0117.cs
blob
bf2c8feafbe5cd9a3aa469633275057ad0ad57fa
1
// cs0117.cs: `int' does not contain a definition for `E'
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
}