2006-12-05 Chris Toshok <toshok@ximian.com>
[mcs.git] / tests / test-495.cs
blobddfa98e35a381bb90efaf1f3c0b87b8857d56e60
1 // This code must be compilable without any warning
2 // Compiler options: -warnaserror -warn:4
4 using System;
6 namespace plj
8 public abstract class aClass
10 public static implicit operator aClass(fromClass o)
12 return null;
16 public class realClass1 : aClass
18 public static implicit operator realClass1(fromClass o)
20 return null;
24 public class fromClass
26 static void Main () {}