Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

15 lines
290 B
C#

// CS0407: A method or delegate `int int.Parse(string)' return type does not match delegate `object Test.Conv(string)' return type
// Line: 17
using System;
public class Test
{
private delegate object Conv(string str);
public static void Main()
{
Conv c = new Conv(int.Parse);
}
}