Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / dtest-013.cs
1 using System.Collections.Generic;
2
3 namespace ndynamic
4 {
5         public class C<U> : List<dynamic>
6         {
7         }
8
9         class C
10         {
11                 public static void Main ()
12                 {
13                 }
14         }
15 }