[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[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 }