2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-538.cs
blob587d9e4891485e807b3a40177e408a4305ba5545
1 delegate IInterface testDelegate(concrete x);
3 interface IInterface {
6 class concrete : IInterface {
9 class Program {
10 private concrete getConcrete(IInterface z) {
11 return new concrete();
14 public static void Main(string[] args) {
15 Program p = new Program();
16 testDelegate x = new testDelegate(p.getConcrete);