tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

main.rs (380B)


      1 // Copyright 2025 The Chromium Authors
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 fn main() {
      6    assert_eq!(test_proc_macro_crate::calculate_using_proc_macro!(), 0);
      7 }
      8 
      9 #[cfg(test)]
     10 mod tests {
     11    #[test]
     12    fn test_proc_macro() {
     13        assert_eq!(test_proc_macro_crate::calculate_using_proc_macro!(), 0)
     14    }
     15 }