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-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
dcs1962.cs
blob
10ea28c327a071aa1d89ec83cc0efef7fbc89494
1
// CS1962: The typeof operator cannot be used on the dynamic type
2
// Line: 8
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
object
t
=
typeof
(
dynamic
);
9
}
10
}