must_check_test.cc 296 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10
#include <gtest/gtest.h>
#include <paddle/platform/must_check.h>

int __must_check SomeFunctionMustCheck() { return 0; }

TEST(MustCheck, all) {
  //  This line should not be compiled, because the
  //  return value of SomeFunctionMustCheck marked as __must_check
  //  SomeFunctionMustCheck();
}