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

19 lines
315 B
C#

// CS0055: Inconsistent accessibility: parameter type `ErrorCS0055' is less accessible than indexer `Foo.this[ErrorCS0055]'
// Line: 11
using System;
class ErrorCS0055 {
public ErrorCS0055 () {}
}
public class Foo {
public int this[ErrorCS0055 e] {
get { return 5; }
}
public static void Main () {
}
}