// CS1661: Cannot convert `anonymous method' to delegate type `System.Predicate' since there is a parameter mismatch // Line: 8 class Test { void test (Test t, System.Predicate p) { test (t, delegate (Test item) { return false; }); } }