[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0200-7.cs
1 // CS0200: Property or indexer `MyClass.Type' cannot be assigned to (it is read-only)
2 // Line: 12
3
4 using System;
5
6  public class MyClass
7  {
8         Type Type { get; }
9
10         public void Test ()
11         {
12                 Type = typeof (string);
13         }
14 }