fi-0207: Type shape integer overflow {:#fi-0207}

A FIDL type must not be so large that its size overflows uint32:

{% include “docs/reference/fidl/language/error-catalog/label/_bad.md” %}

{% includecode gerrit_repo="fuchsia/fuchsia" gerrit_path="tools/fidl/fidlc/tests/fidl/bad/fi-0207.test.fidl" exclude_regexp="\/\/ (Copyright 20|Use of|found in).*" %}

To fix the error, use a smaller array size:

{% include “docs/reference/fidl/language/error-catalog/label/_good.md” %}

{% includecode gerrit_repo="fuchsia/fuchsia" gerrit_path="tools/fidl/fidlc/tests/fidl/good/fi-0207.test.fidl" exclude_regexp="\/\/ (Copyright 20|Use of|found in).*" %}

In practice FIDL types should be far smaller than 232 bytes, because they are usually sent over Zircon channels, which are limited to 64 KiB per message.