Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / tti / test / test_has_static_mem_fun_fail2.cpp
1
2 //  (C) Copyright Edward Diener 2011
3 //  Use, modification and distribution are subject to the Boost Software License,
4 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt).
6
7 #include "test_has_static_mem_fun.hpp"
8
9 int main()
10   {
11   
12   // Function signature has type which does not exist
13   
14   BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN(TSFunction)<AnotherType,AType::AClassType,boost::mpl::vector<AType::AnIntType,double> > aVar;
15   
16   return 0;
17
18   }