module 0x8675309::M { struct S { u: u64 } struct R has key { f: u64 } struct G0<T> has drop { f: T } struct G1<T: key> { f: T } struct G2<phantom T> has drop {} fun t0(r: &R, r_mut: &mut R, s: S, s_ref: &S, s_mut: &mut S) { (0: u8) == (1: u128); 0 == false; &0 == 1; 1 == &0; s == s_ref; s_mut == s; } fun t1(r: R) { r == r; } fun t3<T: copy + key>(t: T) { G0<R>{ f: R { f: 1 } } == G0<R>{ f: R { f: 1 } }; // can be dropped, but cannot infer type G2{} == G2{}; G1{ f: t } == G1{ f: t }; } fun t4() { () == (); (0, 1) == (0, 1); (1, 2, 3) == (0, 1); (0, 1) == (1, 2, 3); } }