https://github.com/stan-dev/stan
Raw File
Tip revision: d94c86f5a770da6ca7060c247242d14ec277a940 authored by Nicusor Serban on 03 June 2024, 14:34:54 UTC
Add release notes for v2.35.0
Tip revision: d94c86f
compile_standalone_functions_test.cpp
#include <gtest/gtest.h>

TEST(lang, compile_standalone_functions) {
  SUCCEED()
      << "Standalone function compilation done through makefile dependencies."
      << std::endl
      << "Should have compiled: "
      << "src/test/test-models/good-standalone-functions/*.stanfuncs";
}
back to top