ARTICLE AD BOX
#include <concepts>
#include <format>
template<typename T>
requires std::constructible_from<std::format_string<>, T>
void foo(T&) {}
int main() {
foo("");
}
This code compiles fine. However, IntelliSense tells me that
no instance of function template "foo" matches the argument list.

Why? Can I fix this?
This is Visual Studio 2026 v18.4.2.
