mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01:00
7 lines
89 B
C#
7 lines
89 B
C#
using System;
|
|
|
|
class Good : IComparable<Good>
|
|
{
|
|
public int CompareTo(Good g) => 0;
|
|
}
|