blob: 43e8dcaaa84138ea6d28a7d979220dcb9dd76c89 [file] [log] [blame]
// Copyright 2025 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// A trivial program to verify that linking against a system framework works.
#include <iostream>
#include <CoreFoundation/CoreFoundation.h>
int main() {
CFLocaleGetSystem();
std::cout << "Success" << std::endl;
return 0;
}