7d05485754
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
12 lines
193 B
C#
12 lines
193 B
C#
// CS0827: An anonymous type property `Prop' cannot be initialized with `(int, method group)'
|
|
// Line: 9
|
|
|
|
class XX
|
|
{
|
|
public static void Main ()
|
|
{
|
|
var m = new {
|
|
Prop = (1, Main)
|
|
};
|
|
}
|
|
} |