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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0500-2.cs
blob
db73647ff454b20739345ed65b8421f74379001e
1
// CS0500: `A.Foo.get' cannot declare a body because it is marked abstract
2
// Line: 5
3
4
public abstract class
A
{
5
public abstract int
Foo { get { return 1; }
}
6
}
7