mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
10 lines
94 B
C#
10 lines
94 B
C#
class Good
|
|
{
|
|
readonly int Field;
|
|
|
|
public Good(int i)
|
|
{
|
|
Field = i;
|
|
}
|
|
}
|