1 // RUN: %clang_cc1 -std=c++20 -emit-pch %s -o %t
2 // RUN: %clang_cc1 -std=c++20 -include-pch %t -verify %s
3 // expected-no-diagnostics
5 #ifndef HEADER_INCLUDED
6 #define HEADER_INCLUDED
8 consteval
int immediate();
9 int regular_function() {
14 int a
= immediate() + regular_function();
17 int f(int arg
= immediate()) {
23 consteval
int immediate() {