2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0206.cs
blob3fe60407e6a4dc31bdbc7b5462208640afb8b83f
1 // cs0206.cs: A property or indexer `X.P' may not be passed as an out or ref parameter
2 // Line:
3 class X {
4 static int P { get { return 1; } set { } }
6 static int m (out int v)
8 v = 1;
9 return 1;
12 static void Main ()
14 m (out P);