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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0029-7.cs
blob
db51b615eaccc825b0b6b349003f3ba6734516c9
1
// CS0029: Cannot implicitly convert type `void' to `object'
2
// Line: 12
3
4
using
System
;
5
using
System
.
Collections
;
6
7
public class
Test
8
{
9
static void
Main
()
10
{
11
Hashtable ht
=
new
Hashtable
();
12
ht
[
"a"
] =
Run
(
"Appointments"
);
13
}
14
15
public static void
Run
(
string
unit
)
16
{
17
}
18
}