//===----------------------------------------------------------------------===// // // 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 linear_congruential_engine // { // public: // // types // typedef UIntType result_type; #include #include template void test() { static_assert((std::is_same< typename std::linear_congruential_engine::result_type, T>::value), ""); } int main() { test(); test(); test(); test(); }