linux-packaging-mono/mcs/tests/test-anon-138.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

37 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.Linq.Expressions;
class Foo<T>
{
public bool ContainsAll<U> (IEnumerable<U> items) where U : T
{
Func<bool> d = delegate () {
foreach (U item in items) {
Expression<Func<bool>> e = () => !Contains (item);
if (!e.Compile () ())
return false;
}
return true;
};
return d ();
}
public bool Contains (T t)
{
return false;
}
}
class Program
{
public static int Main ()
{
var x = new Foo<int> ();
return x.ContainsAll (new [] { 4, 6, 78 }) ? 0 : 1;
}
}