2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-399.cs
blob584cb5adae749d887b890647050d65695c135f9e
1 using System;
2 using System.Collections.Generic;
4 namespace TestIssue
6 class Base
10 class Derived : Base
14 class Program
16 static int Main ()
18 try {
19 IEnumerable<Derived> e1 = (IEnumerable<Derived>) (new Base [] { });
20 return 1;
22 catch (InvalidCastException)
24 return 0;