mirror of
https://github.com/github/codeql.git
synced 2026-03-30 04:08:16 +02:00
8 lines
89 B
C#
8 lines
89 B
C#
class Bad
|
|
{
|
|
public int Max(int a, int b)
|
|
{
|
|
return a > a ? a : b;
|
|
}
|
|
}
|