summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1067.cs
blob: dbe433e7af1032aaa416d48e39d8290e90a0c38b (plain)
1
2
3
4
5
6
7
8
9
10
// CS1067: Partial declarations of `I<T>' must have the same type parameter variance modifiers
// Line: 8

partial interface I<in T>
{
}

partial interface I<out T>
{
}