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

16 lines
293 B
C#

// CS0059: Inconsistent accessibility: parameter type `ErrorCS0059' is less accessible than delegate `Foo.ErrorCS0059Delegate'
// Line: 10
using System;
class ErrorCS0059 {
}
public class Foo {
public delegate void ErrorCS0059Delegate (ErrorCS0059 e);
public static void Main () {
}
}