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
/
cs0118-4.cs
blob
eaa9ad291a914eb146530d123418d90a8ada45f9
1
// CS0118: `x.a.B' is a `property' but a `type' was expected
2
// Line: 9
3
4
using
System
;
5
6
namespace
x
7
{
8
class
a
9
{
10
bool
B { set {}
}
11
12
void
Test
(
B b
) {}
13
}
14
}