'use server' // Should be 0 111000 0, which is "70" in hex. export async function action(a, b, c) { return (
{a} {b} {c}
) } // Should be 0 111111 1, which is "7f" in hex. export default async function action2(a, b, ...c) { return (
{a} {b} {c}
) } // Should be 0 111111 1, which is "60" in hex. export async function action3(a, b) { 'use server' return (
{a} {b}
) } // Should be 1 110000 0, which is "e0" in hex. export async function cache(a, b) { 'use cache' return (
{a} {b}
) }