// This file should FAIL to compile because `#[cached(sync)]` cannot be
// combined with `async fn`. The macro panics at expansion time with:
// "`#[cached(sync)]` cannot be used with `async fn` ..."
useoxcache::cached;#[cached(service ="compile_fail_test", sync)]
async fnget_user()->Result<(), ()>{Ok(())}fnmain(){}