﻿// Once these deprecations are removed, these tests 
// should be updated if there is no corresponding non-
// deprecated test, and then relocated out of this file.

###
A.B!C
###
A -> @F.G!H.@I()
###
A && B in C
###
A and B && C
###
A or B ^^ C
###
A xor B || C
###
A xor B && C
###
A and B ^^ C
###
(A || B ; C)
###
2 ** 3

###
// No longer supported.
x%{a, b}

###
T!3
###
T!~3 // Error.
###
T~3 // Error.
###
T not 3 // Error.
###
T ! 0x1C
###
T ! 0b0001_1100
###
T!
###
T!-3
###
T!3.e10
###
T!"foo"

###
A << B >> C >>> D
###
A == B <> C
###
A !~ B
###
A ~ B

###
it.name1!name2
###
it!name1.name2

###
@A.B!C.@D(3)

###
// No longer supported.
A{ X: F }
###
// No longer supported.
A{+ X: F }
###
// No longer supported.
A->{+ X: F }
