Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs1967.cs
1 // CS1967: A constraint cannot be the dynamic type
2 // Line: 4
3
4 class C<T> where T : dynamic
5 {
6 }