a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
293 B
C#
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 () {
|
|
}
|
|
}
|
|
|