mirror of
https://github.com/github/codeql.git
synced 2026-02-22 18:03:39 +01:00
18 lines
494 B
Plaintext
18 lines
494 B
Plaintext
using System;
|
|
|
|
namespace My.Qltest
|
|
{
|
|
public class Library
|
|
{
|
|
public static object MixedFlowArgs(object o1, object o2) => throw null;
|
|
|
|
public static object GeneratedFlowWithGeneratedNeutral(object o) => throw null;
|
|
|
|
public static object GeneratedFlowWithManualNeutral(object o) => throw null;
|
|
|
|
public static object StepArgReturnGenerated(object x) => throw null;
|
|
|
|
public static object StepArgReturnGeneratedIgnored(object x) => throw null;
|
|
}
|
|
}
|