about summary refs log tree commit diff
path: root/tests/pretty/trait-polarity.rs
blob: d4d8bd6fd61e0256002e0880761c6ee0d030c991 (plain)
1
2
3
4
5
6
7
8
9
#![feature(negative_impls)]

//@ pp-exact

struct Test;

impl !Send for Test {}

pub fn main() {}