Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
constexpr
  • Loading branch information
zyn0217 committed Aug 27, 2024
commit 2a5dc0a6bb0eae3a2316f2850b23431a72223393
2 changes: 1 addition & 1 deletion clang/test/SemaTemplate/alias-template-with-lambdas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void bar() {

namespace GH82104 {

template <typename, typename... D> int Value = sizeof...(D);
template <typename, typename... D> constexpr int Value = sizeof...(D);

template <typename T, typename... U>
using T14 = decltype([]<int V = 0>(auto Param) {
Expand Down