2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0313.cs
blob17fe7bc883f6d1dbcd6a4a05836bb81ab9eccfee
1 // CS0313: The type `S?' cannot be used as type parameter `T' in the generic type or method `S.Foo<T>(T)'. The nullable type `S?' never satisfies interface constraint
2 // Line: 16
4 interface I
8 struct S : I
10 static void Foo<T> (T t) where T : I
14 static void Test (S? s)
16 Foo (s);