2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-624.cs
blob47846f7c4c95b84901fd1656c30c645f9f41ee79
1 using System;
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 {
9 int Type {
10 get {
11 return 1;
15 static void Main ()
17 Type t = (Type) null;