mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
22 lines
598 B
Plaintext
22 lines
598 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;
|
|
|
|
public void SetValue(object o) => throw null;
|
|
|
|
public object GetValue() => throw null;
|
|
}
|
|
}
|