[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0720.cs
blobcd27b07f9612c9167deabf3dae20921b6ad64c39
1 // CS0720: `StaticClass.this[int]': cannot declare indexers in a static class
2 // Line: 5
4 static class StaticClass {
5 public int this [int arg] { set {} }