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
/
cs0513.cs
blob
762d831efc6ccbfa87deffd3b1eb0ca60a4f73f0
1
// CS0513: `X.myAbstract()' is abstract but it is declared in the non-abstract class `X'
2
// Line: 5
3
4
class
X
{
5
public abstract void
myAbstract
();
6
}
7
8
class
Y
:
X
{
9
}
10