mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
15 lines
164 B
C#
15 lines
164 B
C#
using System;
|
|
|
|
class Bad
|
|
{
|
|
private int id;
|
|
|
|
public Bad(int Id)
|
|
{
|
|
this.id = Id;
|
|
}
|
|
|
|
public bool Equals(Bad b) =>
|
|
this.id == b.id;
|
|
}
|