7 lines
108 B
Rust
7 lines
108 B
Rust
fn main() {
|
|
let f: fn#() = fn# () {
|
|
log "This is a bare function"
|
|
};
|
|
let g;
|
|
g = f;
|
|
} |