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
4 changes: 2 additions & 2 deletions source/declarations.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6296,8 +6296,8 @@
}
constexpr int z = f(); // error: not a constant expression

typedef int *A[3]; // array of 3 pointer to \tcode{int}
typedef const int *const CA[3]; // array of 3 const pointer to \tcode{const int}
typedef int *AP[3]; // array of 3 pointer to \tcode{int}
typedef const int *const ACPC[3]; // array of 3 const pointer to \tcode{const int}
ACPC &&r = AP{}; // binds directly
\end{codeblock}
\end{example}
Expand Down
Loading