2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-19 04:42:14 +00:00
Files
tti/test/test_has_member_template_fail2.cpp
2020-01-13 20:10:37 -05:00

19 lines
427 B
C++

// (C) Copyright Edward Diener 2019
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).
#include "test_has_mem_fun_template.hpp"
int main()
{
// Function signature has type which does not exist
SameName<void (InvalidType::*)(int *,int,float &)> aVar;
return 0;
}