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
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0535-3.cs
blob
23c879602f745de1b455c0d40545e4c918b6c720
1
// cs0535-3.cs: `Test' does not implement interface member `X.Hola(ref string)'
2
// Line: 9
3
4
using
System
;
5
interface
X
{
6
void
Hola
(
ref string
name
);
7
}
8
9
class
Test
:
X
{
10
static void
Main
()
11
{
12
}
13
14
public void
Hola
(
out string
name
)
15
{
16
name
=
null
;
17
}
18
}
19