mirror of
https://github.com/github/codeql.git
synced 2026-02-13 21:51:29 +01:00
12 lines
225 B
C#
12 lines
225 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
class ConditionalAccessTest
|
|
{
|
|
void M1(object o)
|
|
{
|
|
var t = o?.GetType();
|
|
Console.WriteLine(t.FullName); // $ Alert[cs/dereferenced-value-may-be-null]
|
|
}
|
|
}
|