diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-03-03 12:02:42 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-03-03 19:32:42 +0100 |
commit | 99b898753f35c6e39afc7fdbf95cd47ca3917890 (patch) | |
tree | 01bc46f751607e9a6ff59d4e464a4a8e38580dae /components/script/dom | |
parent | 4d8d54fc00644204768886569959429dd67998a0 (diff) | |
download | servo-99b898753f35c6e39afc7fdbf95cd47ca3917890.tar.gz servo-99b898753f35c6e39afc7fdbf95cd47ca3917890.zip |
Upgrade to rustc 1.34.0-nightly (0ea22717a 2019-03-02)
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/bindings/conversions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/conversions.rs b/components/script/dom/bindings/conversions.rs index 80b8bc0356b..0776d39fdcb 100644 --- a/components/script/dom/bindings/conversions.rs +++ b/components/script/dom/bindings/conversions.rs @@ -71,7 +71,7 @@ pub trait IDLInterface { /// A trait to mark an IDL interface as deriving from another one. #[cfg_attr( feature = "unstable", - rustc_on_unimplemented = "The IDL interface `{Self}` is not derived from `{T}`." + rustc_on_unimplemented(message = "The IDL interface `{Self}` is not derived from `{T}`.") )] pub trait DerivedFrom<T: Castable>: Castable {} |