mirror of
https://github.com/boostorg/parser.git
synced 2026-01-19 16:32:13 +00:00
18 lines
446 B
C++
18 lines
446 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_attribute();
|
|
void compile_seq_attribute();
|
|
void compile_or_attribute();
|
|
void compile_combining_groups();
|
|
|
|
int main()
|
|
{
|
|
compile_attribute();
|
|
compile_seq_attribute();
|
|
compile_or_attribute();
|
|
compile_combining_groups();
|
|
}
|