/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
python/tidy/tests/ban-domrefcell.rs
16 строк
445 B
Samson
Replace script_plugins with a clippy like rustc driver (named crown) (#30508)
01 дек 2023, 18:50
Не верифицирован
01 дек 2023, 18:50
604979e
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ extern crate script; use script::test::Dom; use script::test::DomRefCell; use script::test::Node; struct Foo { bar: DomRefCell<Dom<Node>> //~^ ERROR Banned type DomRefCell<Dom<T>> detected. Use MutDom<T> instead } fn main() {}