Repro: ```console cargo run --manifest-path bindgen-cli/Cargo.toml -- \ --enable-cxx-namespaces \ <(echo ' namespace repro { template<unsigned int N> class Array { int inner[N]; }; class C { Array<3> arr; }; } ') \ -- \ -xc++ \ | rustc --crate-type=lib --edition=2021 /dev/stdin ``` Bisects to https://github.com/rust-lang/rust-bindgen/pull/2880. @GKFX This impacts Clang's implementation of `#include <chrono>`.