2022-05-23 16:14:54 +00:00
|
|
|
// Copyright (C) 2022 Intel Corporation.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
// This is the test found in https://sourceware.org/bugzilla/show_bug.cgi?id=29087
|
|
|
|
|
|
|
|
#define BUILD
|
|
|
|
#include "lib.h"
|
|
|
|
|
2022-07-15 19:38:18 +00:00
|
|
|
void *S::ptr = nullptr;
|
2022-05-23 16:14:54 +00:00
|
|
|
S::~S() { }
|
2022-07-15 19:38:18 +00:00
|
|
|
void *S::f() { return ptr; }
|