blob: b1617963a86d216a3c6cf4248fc0ea9a3d60f740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 8
using System.Runtime.CompilerServices;
public class C
{
[IndexerName ("1" + 2)]
public string this [int i] {
set { }
}
}
|