mirror of
https://github.com/boostorg/cmake.git
synced 2026-01-19 16:12:15 +00:00
Verify that a test case with multiple sources is used and unsupported B2 specifics are ignored or skipped.
12 lines
248 B
C++
12 lines
248 B
C++
// Copyright 2023 Alexander Grund
|
|
// 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
|
|
|
|
//Maybe in a header:
|
|
int g();
|
|
|
|
int main()
|
|
{
|
|
return g();
|
|
}
|