2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-11-28 10:57:41 -06:00
|
|
|
use std::result::Result;
|
|
|
|
use std::result::Result::Ok;
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static C: Result<(), Box<isize>> = Ok(());
|
2014-01-10 00:24:31 -06:00
|
|
|
|
|
|
|
// This is because of yet another bad assertion (ICE) about the null side of a nullable enum.
|
|
|
|
// So we won't actually compile if the bug is present, but we check the value in main anyway.
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
assert!(C.is_ok());
|
|
|
|
}
|