2007-09-02 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / gcs0265.cs
1 // gcs0265.cs: Partial declarations of `Partial<T>' have inconsistent constraints for type parameter `T'\r
2 // Line: 4\r
3 \r
4 partial class Partial<T> where T: class, new()\r
5 {\r
6 }\r
7 \r
8 partial class Partial<T> where T : new ()\r
9 {\r
10 }\r