This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-05-01 04:27:38 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
901b340c1f
rust
/
tests
/
ui
/
error-codes
/
E0438.rs
9 lines
95 B
Rust
Raw
Normal View
History
Unescape
Escape
fix "X is not a member of trait Y" span labels The span labels for associated types and consts were hardcoded to `Foo` rather than substituting the name of the trait. This also normalizes the wording for associated methods', traits', and consts' span labels. Fixes #36428.
2016-09-12 21:47:59 +00:00
trait
Bar
{
}
Add new error code tests
2016-08-17 21:45:10 +00:00
fix "X is not a member of trait Y" span labels The span labels for associated types and consts were hardcoded to `Foo` rather than substituting the name of the trait. This also normalizes the wording for associated methods', traits', and consts' span labels. Fixes #36428.
2016-09-12 21:47:59 +00:00
impl
Bar
for
i32
{
Add new error code tests
2016-08-17 21:45:10 +00:00
const
BAR
:
bool
=
true
;
//~ ERROR E0438
}
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink