Issue 139067
Summary [clang] fails to compile print("{}", 5s) without libc++
Labels clang, libc++
Assignees
Reporter Taw3e8
    This [fails to compile](https://godbolt.org/z/EWrMKdd3o) without adding libc++:

```cpp
#include <chrono>
#include <print>

int main() {
	using namespace std::chrono_literals;
	std::print("{}", 5s);
}
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to