mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
- Async streams (test only) - Unmanaged generic structs (extractor support) - Alternate interpolated strings (test only) - static local function (test only)
11 lines
125 B
C#
11 lines
125 B
C#
using System;
|
|
|
|
class StaticLocalFunction
|
|
{
|
|
int F()
|
|
{
|
|
static int G(int x) => x;
|
|
return G(12);
|
|
}
|
|
}
|