mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
188 B
C#
9 lines
188 B
C#
class Bad
|
|
{
|
|
int Size { get; set; }
|
|
|
|
bool Espresso => !(Size > 4);
|
|
bool Latte => Espresso == false && Size <= 8;
|
|
bool Grande => Espresso == false ? Latte != true : false;
|
|
}
|