mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
279 B
C#
19 lines
279 B
C#
using System;
|
|
|
|
class PatternMatchSpan
|
|
{
|
|
|
|
public void M1(ReadOnlySpan<char> x1)
|
|
{
|
|
if (x1 is "ABC") { }
|
|
}
|
|
|
|
public void M2(Span<char> x2)
|
|
{
|
|
switch (x2)
|
|
{
|
|
case "DEF": { break; }
|
|
default: { break; }
|
|
}
|
|
}
|
|
} |