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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0179-3.cs
blob
14d5e548cab5d7e8cb173e171270f795ce6d26a1
1
// CS0179: `Bar.Foo.set' cannot declare a body because it is marked extern
2
// Line: 5
3
4
class
Bar
{
5
extern int
Foo
{
6
set
{ }
7
get
{ }
8
}
9
}
10