bug is not actually modules-specific, but it's a little tricky to tickle it outside of modules builds, so submitting with the reduced testcase I have. llvm-svn: 230303
10 lines
199 B
C++
10 lines
199 B
C++
namespace std {
|
|
using size_t = decltype(sizeof(0));
|
|
|
|
template<typename T> struct initializer_list {
|
|
initializer_list(T*, size_t);
|
|
};
|
|
|
|
template<typename T> int min(initializer_list<T>);
|
|
}
|