Issue #7390 correct the order of mod declaration

This commit is contained in:
Hugo Thiessard 2015-09-18 22:02:04 +02:00
parent e81e91207c
commit 6565e7b02f
11 changed files with 53 additions and 55 deletions

View file

@ -51,8 +51,8 @@ use util::opts;
use std::env;
mod window;
mod input;
mod window;
struct BrowserWrapper {
browser: Browser,
@ -105,4 +105,3 @@ fn main() {
} = browser;
browser.shutdown();
}