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
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 17:47:59 -04:00
trait
Bar
{
}
Add new error code tests
2016-08-17 23:45:10 +02: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 17:47:59 -04:00
impl
Bar
for
i32
{
Add new error code tests
2016-08-17 23:45:10 +02:00
const
BAR
:
bool
=
true
;
//~ ERROR E0438
}
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink