blob: 0cbcbbb70e466feb1a4e9bbdbb2f855d2b073f13 [file] [log] [blame]
Richard Smith3d8e97e2013-10-18 06:54:39 +00001// RUN: rm -rf %t
2// RUN: %clang_cc1 -x objective-c++ -fmodules -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11
3
4// expected-no-diagnostics
5@import initializer_list;
6
7int n = std::min({1, 2, 3});