blob: 0af17a3134b0c2069d3b181a699516cd83aed49c [file] [log] [blame]
library test;
import self as self;
static field dynamic a_not = !true;
static field dynamic a_complement = 1.~();
static field dynamic a_negate = 1.unary-();
static method main() dynamic {
self::a_not;
self::a_complement;
self::a_negate;
}