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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0117-2.cs
blob
79df8d4ac1f9e34d0dace9273d16f4eb4e81a052
1
// cs0117-2.cs: `A' does not contain a definition for `Foo'
2
// Line: 15
3
using
System
;
4
using
System
.
Runtime
.
CompilerServices
;
5
6
class
A
7
{
8
[
IndexerName
(
"Foo"
)]
9
public int this
[
int
index
] {
10
get
{ return index; }
11
}
12
13
static int
Test
(
A a
)
14
{
15
return
a
.
Foo
;
16
}
17
18
public static void
Main
()
19
{
20
Test
(
new
A
());
21
}
22
}