using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
int i = 10;
string s = "sgsdg";
if (i == s) { // on TS 2.9.2: Operator '===' cannot be applied to types 'A' and 'I'
// on TS 3.0.0-dev.20180712: This condition will always return 'false' since the types 'A' and 'I' have no overlap.
}