mirror of https://github.com/rwf2/Rocket.git
15 lines
217 B
Rust
15 lines
217 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(rocket_codegen)]
|
||
|
#![allow(dead_code)]
|
||
|
#![deny(unmounted_route)]
|
||
|
|
||
|
extern crate rocket;
|
||
|
|
||
|
#[get("/")]
|
||
|
fn index() { }
|
||
|
//~^ ERROR is not mounted
|
||
|
|
||
|
fn main() {
|
||
|
rocket::ignite().launch();
|
||
|
}
|