"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0553-2.cs
blobc8b48f371e81f597a2e10fe38007ff0939ef330a
1 // CS0553: User-defined conversion `plj.aClass.implicit operator plj.aClass(object)' cannot convert to or from a base class
2 // Line: 10
4 using System;
6 namespace plj
8 public abstract class aClass
10 public static implicit operator aClass(object o)
12 return null;