aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/alignof1.C
blob: 36661c1f1e9b98c75649ebe353a40fed0c5d1b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do run }

// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>, 2002-07-20
// Bug PR/7363.

template<typename T>
int my_alignof()
{
  return __alignof__ (T);
}

template<typename>
  struct X { };

int main()
{
  return !my_alignof<X<void> >();
}