Files
linux-packaging-mono/mcs/errors/cs1007-2.cs

11 lines
128 B
C#
Raw Normal View History

// CS1007: Property accessor already defined
// Line: 8
class DoubleAccessor
{
public bool Breaker {
set { }
set { }
}
}