summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/auxiliary/issue-31702-2.rs
blob: d360ae0ca7e37d7859e6c34ec1f8d084c11772ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// compile-flags: -g

extern crate issue_31702_1;

use std::collections::HashMap;
use issue_31702_1::U256;

pub struct Ethash {
    engine_params: fn() -> Option<&'static Vec<u8>>,
    u256_params: HashMap<String, U256>,
}

impl Ethash {
    pub fn u256_param(&mut self, name: &str) -> U256 {
        let engine = self.engine_params;
        *self.u256_params.entry(name.to_owned()).or_insert_with(|| {
            engine().map_or(U256::new(0u64), |_a| loop {})
        })
    }
}