mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
12 lines
167 B
C#
12 lines
167 B
C#
using System;
|
|
|
|
class StaticLocalFunctions
|
|
{
|
|
int Fn(int x)
|
|
{
|
|
static int I(int y) => y;
|
|
int J(int y) => x+y;
|
|
return I(x) + J(x);
|
|
}
|
|
}
|