Switch to commit-specific nightlies

This commit is contained in:
Anthony Ramine 2017-02-15 11:08:00 +01:00 committed by Simon Sapin
parent 216a89f776
commit 336e6c8f28
9 changed files with 11 additions and 10 deletions

View file

@ -13,7 +13,7 @@ use script::test::Node;
struct Foo {
bar: DOMRefCell<JS<Node>>
//~^ ERROR Banned type DOMRefCell<JS<T>> detected. Use MutJS<JS<T>> instead,
//~^ ERROR Banned type DOMRefCell<JS<T>> detected. Use MutJS<JS<T>> instead
}
fn main() {}

View file

@ -12,7 +12,7 @@ use std::cell::Cell;
struct Foo {
bar: Cell<JSVal>
//~^ ERROR Banned type Cell<JSVal> detected. Use MutJS<JSVal> instead,
//~^ ERROR Banned type Cell<JSVal> detected. Use MutJS<JSVal> instead
}
fn main() {}

View file

@ -8,7 +8,7 @@
extern crate deny_public_fields;
#[derive(DenyPublicFields)]
//~^ ERROR custom derive attribute panicked
//~^ ERROR proc-macro derive panicked
struct Foo {
pub v1: i32,
v2: i32