This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
58e901b6fd
rust
/
tests
/
ui
/
associated-consts
/
associated-const-inherent-impl.rs
12 lines
105 B
Rust
Raw
Normal View
History
Unescape
Escape
Add `// run-pass` annotations to all the tests under `ui/run-pass/`. (I may have accidentally added it to some auxilliary crates as well; my emacs-macro-based methodology was pretty crude.)
2018-08-30 14:18:55 +02:00
// run-pass
Feature-gate associated constants.
2015-03-26 13:06:26 -06:00
Functional changes for associated constants. Cross-crate usage of associated constants is not yet working.
2015-03-15 19:35:25 -06:00
struct
Foo
;
impl
Foo
{
const
ID
:
i32
=
1
;
}
fn
main
(
)
{
assert_eq!
(
1
,
Foo
::
ID
)
;
}
Copy permalink