func Bar[T []byte|string](s T) bool {
    for _, v := range s { // cannot range over s (variable of type T 
constrained by []byte|string) (T has no structural type)
        if v > 100 {
            return true
        }
    }
    return false
}

The message is quite confusing.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/44b5f535-adc8-4049-ba41-638f90becc3cn%40googlegroups.com.

Reply via email to