mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Replace compiletest suite by doc-tests with compile_fail
compiletest-rs use internal rustc APIs and is broken in today’s Nightly. rustdoc however is maintained with rustc and so much less fragile.
This commit is contained in:
parent
d96f0ff6a7
commit
b1ce298d4b
18 changed files with 266 additions and 239 deletions
63
tests/unit/script_plugins/lib.rs
Normal file
63
tests/unit/script_plugins/lib.rs
Normal file
|
@ -0,0 +1,63 @@
|
|||
/* 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 http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
pub mod unrooted_must_root {
|
||||
/**
|
||||
```
|
||||
#![feature(plugin)]
|
||||
#![plugin(script_plugins)]
|
||||
|
||||
#[must_root] struct Foo(i32);
|
||||
#[must_root] struct Bar(Foo);
|
||||
|
||||
fn foo1(_: &Foo) {}
|
||||
fn foo2(_: &()) -> &Foo { unimplemented!() }
|
||||
|
||||
fn main() {}
|
||||
```
|
||||
*/
|
||||
pub fn ok() {}
|
||||
|
||||
/**
|
||||
```compile_fail
|
||||
#![feature(plugin)]
|
||||
#![plugin(script_plugins)]
|
||||
|
||||
#[must_root] struct Foo(i32);
|
||||
struct Bar(Foo);
|
||||
|
||||
fn main() {}
|
||||
```
|
||||
*/
|
||||
pub fn struct_field() {}
|
||||
|
||||
/**
|
||||
```compile_fail
|
||||
#![feature(plugin)]
|
||||
#![plugin(script_plugins)]
|
||||
|
||||
#[must_root] struct Foo(i32);
|
||||
|
||||
fn foo1(_: Foo) {}
|
||||
|
||||
fn main() {}
|
||||
```
|
||||
*/
|
||||
pub fn parameter() {}
|
||||
|
||||
/**
|
||||
```compile_fail
|
||||
#![feature(plugin)]
|
||||
#![plugin(script_plugins)]
|
||||
|
||||
#[must_root] struct Foo(i32);
|
||||
|
||||
fn foo2() -> Foo { unimplemented!() }
|
||||
|
||||
fn main() {}
|
||||
```
|
||||
*/
|
||||
pub fn return_type() {}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue