summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1690-7.cs
blob: 1699f030e529db01c489c4e1b64209d27d8a2239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// CS1690: Cannot call methods, properties, or indexers on `A.point' because it is a value type member of a marshal-by-reference class
// Line: 27
// Compiler options: -warn:1 -warnaserror

using System;

public struct Coord 
{
        public int val; 
}

public struct Point {
	public Coord x;
	public Coord y;
}

public class A : MarshalByRefObject
{
   public Point point = new Point ();
}

public class Test
{
   public static void Main ()
   {
        A a = new A ();
        Console.WriteLine (a.point.x);
   }
}