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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1061-10.cs
blob
95e549f8b1ccbe412da24a03d255f8a2437622f8
1
// CS1061: Type `int' does not contain a definition for `C' and no extension method `C' of type `int' could be found. Are you missing an assembly reference?
2
// Line: 12
3
4
using
System
;
5
6
namespace
TestEnum
7
{
8
public enum
E
9
{
10
A
=
0
,
11
B
=
1
.
12
C
=
2
13
}
14
}