Files
stl_interfaces/test/compile_tests_main.cpp
2022-12-05 20:11:03 -06:00

14 lines
394 B
C++

// Copyright (C) 2021 T. Zachary Laine
//
// Distributed under 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)
void compile_seq_cont_constrained_pop_back();
void compile_sfinae_path_mutable_iterator();
int main()
{
compile_seq_cont_constrained_pop_back();
compile_sfinae_path_mutable_iterator();
}