[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[mono.git] / mcs / errors / cs0264-2.cs
1 // CS0264: Partial declarations of `A<T,O>' must have the same type parameter names in the same order
2 // Line: 8
3
4 partial class A<T, bool>
5 {
6 }
7
8 partial class A<T, O>
9 {
10 }