auto
예:
template<class T> concept Foo = true; Foo auto func() { return true; } void bar() { auto f = func(); // 'Foo' 제약을 추가하기 위해 여기서 경고 }