Fix check-fast breakage in new enum test.

This commit is contained in:
Jed Davis 2013-10-30 00:13:17 -07:00
parent c0190a9cfb
commit 86a710e454

View File

@ -51,5 +51,5 @@ pub fn main() {
check!(s, i64, -0x1727374757677787);
enum Simple { A, B }
assert_eq!(std::mem::size_of::<Simple>(), 1);
assert_eq!(::std::mem::size_of::<Simple>(), 1);
}