rust/src/test
Jorge Aparicio 210dd611aa implement the ? operator
The `?` postfix operator is sugar equivalent to the try! macro, but is more amenable to chaining:
`File::open("foo")?.metadata()?.is_dir()`.

`?` is accepted on any *expression* that can return a `Result`, e.g. `x()?`, `y!()?`, `{z}?`,
`(w)?`, etc. And binds more tightly than unary operators, e.g. `!x?` is parsed as `!(x?)`.

cc #31436
2016-03-07 14:39:39 -05:00
..
auxiliary Auto merge of #31824 - jseyfried:privacy_in_resolve, r=nikomatsakis 2016-03-03 02:21:28 +00:00
codegen
codegen-units
compile-fail implement the ? operator 2016-03-07 14:39:39 -05:00
compile-fail-fulldeps
debuginfo
parse-fail
pretty
run-fail Auto merge of #32007 - nikomatsakis:compiletest-incremental, r=alexcrichton 2016-03-03 17:41:13 +00:00
run-fail-fulldeps
run-make
run-pass implement the ? operator 2016-03-07 14:39:39 -05:00
run-pass-fulldeps
run-pass-valgrind test: Mark all rpass-valgrind as no-prefer-dynamic 2016-02-29 09:36:00 -08:00
rustdoc Ignore a rustdoc test that does not work on beta 2016-03-03 00:40:34 +00:00