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
2d45df3caa
rust
/
tests
/
ui
/
issues
/
issue-68010-large-zst-consts.rs
6 lines
73 B
Rust
Raw
Normal View
History
Unescape
Escape
Optimize const value interning for ZST types Interning can skip any inhabited ZST type in general.
2020-10-17 14:47:27 -05:00
// build-pass
fn
main
(
)
{
Update tests to remove old numeric constants Part of #68490. Care has been taken to leave the old consts where appropriate, for testing backcompat regressions, module shadowing, etc. The intrinsics docs were accidentally referring to some methods on f64 as std::f64, which I changed due to being contrary with how we normally disambiguate the shadow module from the primitive. In one other place I changed std::u8 to std::ops since it was just testing path handling in macros. For places which have legitimate uses of the old consts, deprecated attributes have been optimistically inserted. Although currently unnecessary, they exist to emphasize to any future deprecation effort the necessity of these specific symbols and prevent them from being accidentally removed.
2020-10-24 18:21:40 -05:00
println!
(
"
{}
"
,
[
(
)
;
usize
::
MAX
]
.
len
(
)
)
;
Optimize const value interning for ZST types Interning can skip any inhabited ZST type in general.
2020-10-17 14:47:27 -05:00
}
Reference in New Issue
Copy Permalink