2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0197.cs
blobe4f3ae3b3f5034b784890e9463dc72180009d518
1 // cs0197.cs: Passing `T.bar' as ref or out or taking its address may cause a runtime exception because it is a field of a marshal-by-reference class
2 // Line: 15
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 class T : MarshalByRefObject {
7 int bar;
9 static void Foo (ref int i)
13 static void Main()
15 T t = new T ();
16 t.bar = 12;
17 Foo (ref t.bar);