Files
date/test/date_test/daypday.fail.cpp
T

15 lines
265 B
C++

// Howard Hinnant
// This work is licensed under a Creative Commons Attribution 4.0 International License.
// http://creativecommons.org/licenses/by/4.0/
// day + day not allowed
#include "date.h"
int
main()
{
using namespace date;
auto x = 3_d + 7_d;
}