blob: 8f592132bdd5fa87b13fae238ffa0d2cdcc9c5b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/// Function foo
///
/// Description of
/// function foo.
fn foo(x: i32, y: i32) -> i32 {
x + y
}
impl A {
/// Do some stuff!! (put cursor here and press enter)
fn a();
}
|