mirror of
https://github.com/github/codeql.git
synced 2026-04-19 22:14:01 +02:00
10 lines
212 B
C#
10 lines
212 B
C#
using System.Text.RegularExpressions;
|
|
|
|
var dummy = "dummy";
|
|
|
|
partial class Test
|
|
{
|
|
[GeneratedRegex("abc|def", RegexOptions.IgnoreCase, "en-US")]
|
|
private static partial Regex AbcOrDefGeneratedRegex();
|
|
}
|