DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-1 / tests / ui / resolve / issue-6642.rs
123456789
struct A; impl A { fn m(&self) { fn x() { self.m() //~ ERROR can't capture dynamic environment in a fn item } } } fn main() {}