mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
19 lines
236 B
C#
19 lines
236 B
C#
using System;
|
|
|
|
class MethodAccess
|
|
{
|
|
void M()
|
|
{
|
|
void M1() { };
|
|
Action a = M1;
|
|
a = M2;
|
|
a = this.M2;
|
|
a = M3;
|
|
a = MethodAccess.M3;
|
|
}
|
|
|
|
void M2() { }
|
|
|
|
static void M3() { }
|
|
}
|