16 lines
177 B
C#
16 lines
177 B
C#
|
// CS0102: The type `X' already contains a definition for `False'
|
||
|
// Line: 11
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
bool False<T> ()
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool False {
|
||
|
get {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|