[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[mono.git] / mcs / errors / cs0610-3.cs
1 // CS0610: Field or property cannot be of type `System.TypedReference'
2 // Line: 5
3
4 public class Sample {
5         const System.TypedReference arg = null;
6 }