2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0413-2.cs
blob1bd61056b5e0496b0daf3df3d71ed0618b8b517f
1 // CS0413: The `as' operator cannot be used with a non-reference type parameter `T'. Consider adding `class' or a reference type constraint
2 // Line: 8
4 public class SomeClass {
7 public class Foo<T> where T : struct {
8 public T Do (object o) { return o as T; }
11 class Driver {
12 static void Main ()
14 Foo<SomeClass> f = new Foo<SomeClass> ();
15 f.Do ("something");