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