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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs1715-3.cs
blob
d3cd5dab0f707687039d0f34ffe67846a72573fa
1
// CS1715: `B.Foo': type must be `int' to match overridden member `A.Foo'
2
// Line: 11
3
4
public abstract class
A
5
{
6
public abstract ref int
Foo { get; }
7
}
8
9
public class
B
:
A
10
{
11
public override ref long
Foo
{
12
get
{
13
throw null
;
14
}
15
}
16
}