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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs1978-2.cs
blob
9e9b33c101fcd2aa418342dcb0551d9fa037946f
1
// CS1978: An expression of type `void' cannot be used as an argument of dynamic operation
2
// Line: 9
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
dynamic
d
=
null
;
9
d
(
Main
());
10
}
11
}