Merge pull request #5636 from BrzVlad/fix-xmm-scan
[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 }