1// Boost.Geometry (aka GGL, Generic Geometry Library)
2// Unit Test
3
4// Copyright (c) 2014, Oracle and/or its affiliates.
5
6// Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
7
8// Licensed under the Boost Software License version 1.0.
9// http://www.boost.org/users/license.html
10
11#include <test_geometries/custom_lon_lat_point.hpp>
12
13#include <boost/geometry/core/cs.hpp>
14#include <boost/geometry/geometries/concepts/check.hpp>
15
16
17namespace bg = boost::geometry;
18
19struct dummy {};
20
21int main()
22{
23 bg::concept::check
24 <
25 ro_lon_lat_point<double, bg::cs::geographic<dummy> > const
26 >();
27
28 return 0;
29}
30

source code of boost/libs/geometry/test/concepts/point_geographic_custom_with_wrong_units.cpp