summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1967.cs
blob: 696c979c0177629120ba1ed9becd8262d02243c6 (plain)
1
2
3
4
5
6
// CS1967: A constraint cannot be the dynamic type
// Line: 4

class C<T> where T : dynamic
{
}