没有TZ的解析时间[重复]

This question already has an answer here:

I want to parse a datetime string like YYYY-MM-DD HH:mm:ss.

However I am having extreme difficulty doing this even after reading the doc.

package main

import (
    "fmt"
    "time"
)

func main() {
    timestamp, err := time.Parse("2006-12-25 11:00:00", "2018-06-13 05:10:59")

    if err != nil {
        panic(err)
    }

    fmt.Println(timestamp.String())
}

Returns:

panic: parsing time "2018-06-13 05:10:59" as "2006-12-25 11:00:00": cannot parse "-13 05:10:59" as "2"

What am I missing?

Thanks

</div>