2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-24 06:02:12 +00:00
Files
parser/test/compile_tests_main.cpp
Zach Laine 378386fe67 Break compile_or_seq_attribute.cpp up into numerous files, and turn it into
runnable -- not compile-only -- tests.
2018-10-14 01:08:54 -05:00

14 lines
330 B
C++

// Copyright (C) 2018 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_attribute();
void compile_or_attribute();
int main()
{
compile_seq_attribute();
compile_or_attribute();
}