* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / gcs0702-2.cs
1 // gcs0702.cs: Bound cannot be special class `object'
2 // Line: 8
3
4 using System;
5
6 class Foo<T>
7         where T : object
8 {
9 }