mirror of
https://github.com/boostorg/stl_interfaces.git
synced 2026-01-19 16:52:11 +00:00
14 lines
394 B
C++
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();
|
|
}
|