TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0200-7.cs
blob3e01495bf82852bfc7420c448a2a52ee479d911e
1 // CS0200: Property or indexer `MyClass.Type' cannot be assigned to (it is read-only)
2 // Line: 12
4 using System;
6 public class MyClass
8 Type Type { get; }
10 public void Test ()
12 Type = typeof (string);