revise cfail test, removing ugeh attribute that was erroneously cut-and-pasted into it.

This commit is contained in:
Felix S. Klock II 2015-10-09 13:30:08 +02:00
parent 61f8def63a
commit b6a4f0393b

View File

@ -25,7 +25,6 @@ impl Drop for ScribbleOnDrop {
struct Foo<T>(u32, T, Box<for <'r> fn(&'r T) -> String>);
impl<T> Drop for Foo<T> {
#[unsafe_destructor_blind_to_params]
fn drop(&mut self) {
// Use of `unsafe_destructor_blind_to_params` is unsound,
// because we pass `T` to the callback in `self.2`