/* This testcase is part of GDB, the GNU debugger.
- Copyright 2015-2017 Free Software Foundation, Inc.
+ Copyright 2015-2020 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
+typedef const char* pointer;
+
int
main ()
{
+ const char *ptr = "pointer";
+ const char array[] = "array";
+ pointer typedef_ptr = "typedef pointer";
const char *null = 0;
return 0; /* break here */