mirror of
https://github.com/github/codeql.git
synced 2026-07-08 21:15:32 +02:00
7 lines
89 B
C#
7 lines
89 B
C#
using System;
|
|
|
|
class Good : IComparable<Good>
|
|
{
|
|
public int CompareTo(Good g) => 0;
|
|
}
|