Files
linux-packaging-mono/mcs/errors/cs1525-12.cs

11 lines
155 B
C#
Raw Normal View History

// CS1525: Unexpected symbol `==', expecting `(' or `type'
// Line: 8
class A
{
public static implicit operator == (A a, bool b)
{
return false;
}
}