cleol
[mcs.git] / errors / cs1503-7.cs
blob87e3632c279fde5b8c819e8ee93de758698d739f
1 // CS1503: Argument `#1' cannot convert `long' expression to type `ulong'
2 // Line: 17
4 class A
6 public static long Prop {
7 get {
8 return 1;
13 class Test
15 static void Main ()
17 Foo (A.Prop);
20 static void Foo (ulong l)