foo/
foo.rs

1pub struct Context;
2
3/// Working with objects.
4///
5/// # Safety
6///
7/// Functions that take indices of locals do not check bounds on these indices;
8/// the caller must ensure that the indices are less than the number of locals
9/// in the current stack frame.
10impl Context {
11}
12
13/// Working with objects.
14///
15/// # Safety
16///
17/// Functions that take indices of locals do not check bounds on these indices;
18/// the caller must ensure that the indices are less than the number of locals
19/// in the current stack frame.
20impl Context {
21    /// bla
22    pub fn bar() {}
23}