2010-08-28 23:01:06 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-28 23:01:06 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <future>
|
|
|
|
|
|
|
|
// class promise<R>
|
|
|
|
|
|
|
|
// void promise<R&>::set_value(R& r);
|
|
|
|
|
|
|
|
#include <future>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
typedef int& T;
|
|
|
|
int i = 3;
|
|
|
|
std::promise<T> p;
|
|
|
|
std::future<T> f = p.get_future();
|
|
|
|
p.set_value(i);
|
2010-08-30 20:46:21 +02:00
|
|
|
int& j = f.get();
|
|
|
|
assert(j == 3);
|
2010-08-28 23:01:06 +02:00
|
|
|
++i;
|
2010-08-30 20:46:21 +02:00
|
|
|
assert(j == 4);
|
2010-08-28 23:01:06 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
p.set_value(i);
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
catch (const std::future_error& e)
|
|
|
|
{
|
|
|
|
assert(e.code() == make_error_code(std::future_errc::promise_already_satisfied));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|