-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add comments explaining why these tests are xfailed
- Loading branch information
1 parent
d4cc7db
commit f8bd955
Showing
4 changed files
with
12 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
// xfail-test | ||
|
||
// xfail-test - #2093 | ||
fn let_in<T>(x: T, f: fn(T)) {} | ||
|
||
fn main() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// error-pattern:attempted access of field `nap` on type | ||
// xfail-test Cross-crate impl method privacy doesn't work | ||
// xfail-fast | ||
// xfail-test | ||
// aux-build:cci_class_5.rs | ||
use cci_class_5; | ||
extern mod cci_class_5; | ||
use cci_class_5::kitties::*; | ||
|
||
fn main() { | ||
let nyan : cat = cat(52u, 99); | ||
let nyan : cat = cat(52, 99); | ||
nyan.nap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters