test-meta.cc 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/*
 * Copyright © 2019  Facebook, Inc.
 *
 *  This is part of HarfBuzz, a text shaping library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Facebook Author(s): Behdad Esfahbod
 */

#include "hb.hh"
#include "hb-meta.hh"


int
main (int argc, char **argv)
{

B
Fix bot  
Behdad Esfahbod 已提交
35 36 37
  static_assert (hb_is_convertible (void, void), "");
  static_assert (hb_is_convertible (void, const void), "");
  static_assert (hb_is_convertible (const void, void), "");
38

B
Fix bot  
Behdad Esfahbod 已提交
39 40 41
  static_assert (hb_is_convertible (int,  int), "");
  static_assert (hb_is_convertible (char, int), "");
  static_assert (hb_is_convertible (long, int), "");
42

B
Fix bot  
Behdad Esfahbod 已提交
43
  static_assert (hb_is_convertible (int, int), "");
44

B
Fix bot  
Behdad Esfahbod 已提交
45 46 47
  static_assert (hb_is_convertible (const int, int), "");
  static_assert (hb_is_convertible (int, const int), "");
  static_assert (hb_is_convertible (const int, const int), "");
48

B
Fix bot  
Behdad Esfahbod 已提交
49 50
  static_assert (hb_is_convertible (int&, int), "");
  static_assert (!hb_is_convertible (int, int&), "");
51

B
Fix bot  
Behdad Esfahbod 已提交
52 53 54 55 56 57 58
  static_assert (hb_is_convertible (int, const int&), "");
  static_assert (!hb_is_convertible (const int, int&), "");
  static_assert (hb_is_convertible (const int, const int&), "");
  static_assert (hb_is_convertible (int&, const int), "");
  static_assert (hb_is_convertible (const int&, int), "");
  static_assert (hb_is_convertible (const int&, const int), "");
  static_assert (hb_is_convertible (const int&, const int), "");
B
Behdad Esfahbod 已提交
59 60 61

  struct X {};

B
Fix bot  
Behdad Esfahbod 已提交
62 63 64 65 66 67 68 69
  static_assert (hb_is_convertible (const X &, const X), "");
  static_assert (hb_is_convertible (X &, const X), "");
  static_assert (hb_is_convertible (X &, const X &), "");
  static_assert (hb_is_convertible (X, const X &), "");
  static_assert (hb_is_convertible (const X, const X &), "");
  static_assert (!hb_is_convertible (const X, X &), "");
  static_assert (!hb_is_convertible (X, X &), "");
  static_assert (hb_is_convertible (X &, X &), "");
70

B
Fix bot  
Behdad Esfahbod 已提交
71 72
  static_assert (hb_is_convertible (int&, long), "");
  static_assert (!hb_is_convertible (int&, long&), "");
73

B
Fix bot  
Behdad Esfahbod 已提交
74 75 76 77 78 79
  static_assert (hb_is_convertible (int *, int *), "");
  static_assert (hb_is_convertible (int *, const int *), "");
  static_assert (!hb_is_convertible (const int *, int *), "");
  static_assert (!hb_is_convertible (int *, long *), "");
  static_assert (hb_is_convertible (int *, void *), "");
  static_assert (!hb_is_convertible (void *, int *), "");
80

B
Behdad Esfahbod 已提交
81 82
  struct Y : X {};

B
Fix bot  
Behdad Esfahbod 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95
  static_assert (hb_is_base_of (void, void), "");
  static_assert (hb_is_base_of (void, int), "");
  static_assert (!hb_is_base_of (int, void), "");

  static_assert (hb_is_base_of (int, int), "");
  static_assert (hb_is_base_of (const int, int), "");
  static_assert (hb_is_base_of (int, const int), "");

  static_assert (hb_is_base_of (X, X), "");
  static_assert (hb_is_base_of (X, Y), "");
  static_assert (hb_is_base_of (const X, Y), "");
  static_assert (hb_is_base_of (X, const Y), "");
  static_assert (!hb_is_base_of (Y, X), "");
B
Behdad Esfahbod 已提交
96

97 98
  return 0;
}