blob: 90c65b515a0e1f6f688e0d38cbfdecfd1f01fac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1540: Cannot access protected member `object.MemberwiseClone()' via a qualifier of type `anonymous type'. The qualifier must be of type `A' or derived from it
// Line: 9
class A
{
public A ()
{
var x = new { s = "-" };
x.MemberwiseClone();
}
}
|