Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / ext / alignof1.C
blob36661c1f1e9b98c75649ebe353a40fed0c5d1b46
1 // { dg-do run }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Gabriel Dos Reis <gdr@codesourcery.com>, 2002-07-20
5 // Bug PR/7363.
7 template<typename T>
8 int my_alignof()
10   return __alignof__ (T);
13 template<typename>
14   struct X { };
16 int main()
18   return !my_alignof<X<void> >();