2017-01-16 17:58:51 +13:00
|
|
|
// rustfmt-normalize_comments: true
|
2015-08-14 14:09:19 +02:00
|
|
|
|
|
|
|
fn main() {
|
2017-06-13 14:49:47 +12:00
|
|
|
let constellation_chan =
|
|
|
|
Constellation::<layout::layout_task::LayoutTask, script::script_task::ScriptTask>::start(
|
|
|
|
compositor_proxy,
|
|
|
|
resource_task,
|
|
|
|
image_cache_task,
|
|
|
|
font_cache_task,
|
|
|
|
time_profiler_chan,
|
|
|
|
mem_profiler_chan,
|
|
|
|
devtools_chan,
|
|
|
|
storage_task,
|
|
|
|
supports_clipboard,
|
|
|
|
);
|
2015-08-14 14:09:19 +02:00
|
|
|
|
2017-06-24 19:49:01 +09:00
|
|
|
Quux::<
|
|
|
|
ParamOne, // Comment 1
|
|
|
|
ParamTwo, // Comment 2
|
|
|
|
>::some_func();
|
2015-09-06 23:18:27 +02:00
|
|
|
|
|
|
|
<*mut JSObject>::relocate(entry);
|
2015-11-14 13:52:43 -08:00
|
|
|
|
|
|
|
let x: Foo<A>;
|
2016-01-10 15:12:15 +01:00
|
|
|
let x: Foo/*::*/<A>;
|
2015-08-14 14:09:19 +02:00
|
|
|
}
|
|
|
|
|
2015-11-19 20:11:32 -06:00
|
|
|
fn op(foo: Bar, key: &[u8], upd: Fn(Option<&memcache::Item>, Baz) -> Result) -> MapResult {}
|