mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
181 B
C#
13 lines
181 B
C#
using System;
|
|
|
|
public class TestClass
|
|
{
|
|
public void M()
|
|
{
|
|
var x1 = "Hello world";
|
|
var x2 = "\u001b";
|
|
var x3 = "\x1b";
|
|
var x4 = "\e";
|
|
}
|
|
}
|