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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-624.cs
blob
1b201225326eefd91520a37f3d0363cea7977ea3
1
using
System
;
2
3
//
4
// The problem here is that `(Type)' is being recognized as a Property
5
// but inside a Cast expression this is invalid.
6
//
7
class
X
{
8
9
int
Type
{
10
get
{
11
return
1
;
12
}
13
}
14
15
public static void
Main
()
16
{
17
Type t
= (
Type
)
null
;
18
}
19
20
}