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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs1546.cs
blob
92cd9ec256c43f2bb63e14a60bfc8464ff3bfb6a
1
// CS1546: Property or event `Test.ITopic.Title' is not supported by the C# language
2
// Line: 9
3
// Compiler options: -r:CS1546-lib.dll
4
5
using
Test
;
6
7
class
C
{
8
public
C
(
ITopic it
) {
9
string
i
=
it
.
Title
(
2
,
3
);
10
}
11
}