auto
示例:
template<class T> concept Foo = true; Foo auto func() { return true; } void bar() { auto f = func(); //在此处警告需要添加约束 'Foo' }