mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
212 B
C#
17 lines
212 B
C#
using System;
|
|
|
|
class Good
|
|
{
|
|
void DoPrint(object o)
|
|
{
|
|
if (o != null)
|
|
Console.WriteLine(o.ToString());
|
|
}
|
|
|
|
void M()
|
|
{
|
|
DoPrint("Hello");
|
|
DoPrint(null);
|
|
}
|
|
}
|