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