blob: 1c5979c0747585c9e2355e8eff86a1e044058fee [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
#![allow(non_camel_case_types)]
pub type task_id = isize;
#[derive(PartialEq)]
pub enum Task {
TaskHandle(task_id)
}
pub fn main() { }