#include <initializer_list>

void f(std::initializer_list<int>) {}

int main()
{
    f{5}; // compile time error, must use f({5})
}