func m() (i int){
    defer func(){i++}
    return 1
}

m() // 2