blob: 5acfdf9ed5342ef16b3476111b125ceec5e65831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// compile-pass
// compile-flags: -Z unpretty=hir
#![feature(existential_type)]
#[prelude_import]
use ::std::prelude::v1::*;
#[macro_use]
extern crate std;
trait Animal { }
fn main() {
pub existential type ServeFut : Animal;
}
|