1 // Compiler options: -warnaserror
4 using System
.Collections
.Generic
;
13 public class EnumSwitch
15 public object SomeFunction
<T
> (SomeEnum endRole
, object parent
, IQueryable
<T
> input
)
19 return input
.Where (i
=> i
!= null);
21 throw new NotImplementedException ();
25 public static void Main ()