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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0115-5.cs
blob
cbf8a0282944139110a48ccd10138d818ee8795b
1
// CS0115: `B.Foo(ref int)' is marked as an override but no suitable method found to override
2
// Line: 13
3
4
class
A
5
{
6
public virtual void
Foo
(
out int
i
)
7
{
8
}
9
}
10
11
class
B
:
A
12
{
13
public override void
Foo
(
ref int
i
)
14
{
15
}
16
}