//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // class exponential_distribution // { // class param_type; #include #include #include int main() { { typedef std::exponential_distribution<> D; typedef D::param_type param_type; param_type p; assert(p.lambda() == 1); } { typedef std::exponential_distribution<> D; typedef D::param_type param_type; param_type p(10); assert(p.lambda() == 10); } }