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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1031-2.cs
blob
28f11a17660bee8e1b90ccf841769649da252a07
1
// CS1031: Type expected
2
// Line: 8
3
4
using
System
;
5
6
class
M
7
{
8
public static void
Main
()
9
{
10
Type t
=
typeof
(
this
);
11
}
12
}
13