auto
例:
template<class T> concept Foo = true; Foo auto func() { return true; } void bar() { auto f = func(); //ここで制約 'Foo' を追加するように警告されます }