mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-08 10:42:37 +00:00
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();
|
|
}
|