qt6windows7/config.tests/no_direct_extern_access/lib.cpp

12 lines
255 B
C++
Raw Normal View History

2023-10-30 06:33:08 +08: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"
void *S::ptr = nullptr;
S::~S() { }
void *S::f() { return ptr; }