1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 #include "mozilla/Range.h"
8 #include "mozilla/TypeTraits.h"
9 
10 using mozilla::IsConvertible;
11 using mozilla::Range;
12 
13 static_assert(IsConvertible<Range<int>, Range<const int>>::value,
14               "Range should convert into const");
15 static_assert(!IsConvertible<Range<const int>, Range<int>>::value,
16               "Range should not drop const in conversion");
17 
18 // We need a proper program so we have someplace to hang the static_asserts.
19 int
main()20 main()
21 {
22   return 0;
23 }
24