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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0673.cs
blob
71d420d8d2355d0abd1a127e546af72c51178eef
1
// cs0673.cs: System.Void cannot be used from C#. Use typeof (void) to get the void type object
2
// Line: 8
3
4
public class
X
5
{
6
public static void
Main
()
7
{
8
System
.
Type t
=
typeof
(
System
.
Void
);
9
}
10
}