blob: 1beeb08e80cdabe35ee4fd3b66f23608d3a6f117 [file] [log] [blame]
Howard Hinnantcfe0b0a2010-09-28 17:13:38 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnant412dbeb2010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantcfe0b0a2010-09-28 17:13:38 +00007//
8//===----------------------------------------------------------------------===//
9
10// <atomic>
11
12// template <class T> T kill_dependency(T y);
13
14#include <atomic>
15#include <cassert>
16
17int main()
18{
19 assert(std::kill_dependency(5) == 5);
20 assert(std::kill_dependency(-5.5) == -5.5);
21}