//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // class discrete_distribution // { // typedef bool result_type; #include #include int main() { { typedef std::discrete_distribution<> D; typedef D::result_type result_type; static_assert((std::is_same::value), ""); } { typedef std::discrete_distribution D; typedef D::result_type result_type; static_assert((std::is_same::value), ""); } }