This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
e30d27be00
rust
/
tests
/
ui
/
imports
/
issue-26930.rs
9 lines
98 B
Rust
Raw
Normal View
History
Unescape
Escape
compiletest: Remove `skip-codegen`
2019-06-12 10:18:32 -05:00
// check-pass
Add regression test for #26930
2016-04-08 21:38:50 -05:00
extern
crate
core
;
use
core
as
core_export
;
use
self
::
x
::
*
;
mod
x
{
}
Removed `#[rustc_error]` from tests that are all `// compile-pass`. I also added `// skip-codegen` to each one, to address potential concerns that this change would otherwise slow down our test suite spending time generating code for files that are really just meant to be checks of compiler diagnostics. (However, I will say: My preference is to not use `// skip-codegen` if one can avoid it. We can use all the testing of how we drive LLVM that we can get...) (Updated post rebase.)
2018-10-31 07:08:01 -05:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink