//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // not1 #include #include int main() { typedef std::logical_not F; assert(std::not1(F())(36)); assert(!std::not1(F())(0)); }