Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Check that we check fns appearing in constant declarations.
// Issue #22382.
const MOVE: fn(&String) -> String = {
fn broken(x: &String) -> String {
return *x //~ ERROR cannot move
}
broken
};
fn main() {