//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // class seed_seq; // seed_seq(); #include #include int main() { std::seed_seq s; assert(s.size() == 0); }