repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* CommandLineException.cs (Message): Include the inner exception message
[mcs.git]
/
errors
/
cs0619-51.cs
blob
f651d432a9c675ee003d7ce82cce138e7c72b06d
1
// cs0619-51.cs: `A.comparer' is obsolete: `Please use ...'
2
// Line: 16
3
// Compiler options: -reference:CS0619-51-lib.dll
4
5
using
System
;
6
using
System
.
Collections
;
7
8
public class
B
:
A
9
{
10
void
test
()
11
{
12
}
13
14
public void
AA
()
15
{
16
comparer
+=
new
D
(
test
);
17
}
18
19
public static void
Main
() {}
20
}