mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
247 B
C#
15 lines
247 B
C#
using System;
|
|
|
|
class Qualifiers
|
|
{
|
|
public short S => Static<short>(null);
|
|
|
|
public int I => Instance<int>();
|
|
|
|
public bool B => this.Instance<bool>();
|
|
|
|
static T Static<T>(object o) => default(T);
|
|
|
|
T Instance<T>() => default(T);
|
|
}
|