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
/
cs0029-12.cs
blob
ad8f95c981a71f66b55462bb3e30c5c19bf4404b
1
// CS0029: Cannot implicitly convert type `A.D' to `A'
2
// Line: 11
3
4
class
A
5
{
6
delegate void
D
();
7
8
public static void
Main
()
9
{
10
const
D d
=
null
;
11
A a
=
d
;
12
}
13
}