[runtime] Fix "make distcheck"
[mono-project.git] / mono / tests / verifier / valid_delegate_return_variant_iface.cs
blobee4dfd27bfd3cf188cac06f2a08f12fd95dde547
1 using System;
2 using System.Collections.Generic;
4 interface IFoo {}
5 class Foo : IFoo {}
7 class Driver
9 static IEnumerable <Foo> Dele (bool b)
11 return null;
14 static void Main ()
16 Func<bool, IEnumerable<IFoo>> dele = Dele;
17 dele (true);