rust/tests/ui/resolve/issue-3021.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
303 B
Rust
Raw Normal View History

2013-03-07 03:09:17 +00:00
trait SipHash {
fn reset(&self);
}
2015-12-11 07:59:11 +00:00
fn siphash(k0 : u64) {
2013-03-07 03:09:17 +00:00
struct SipState {
v0: u64,
}
2013-03-07 03:09:17 +00:00
impl SipHash for SipState {
fn reset(&self) {
self.v0 = k0 ^ 0x736f6d6570736575; //~ ERROR can't capture dynamic environment
}
}
panic!();
}
fn main() {}